
@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, main, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * Base
 */
@font-face {
  font-family: "Noto Sans CJK JP Subset";
  font-style: normal;
  font-weight: 400;
  src: local("Noto Sans CJK JP"), local("NotoSansCJKjp-Regular"), local("NotoSansJP-Regular"), url("/common/fonts/NotoSans_Regular.woff2") format("woff2"), url("/common/fonts/NotoSans_regular.woff") format("woff");
}

@font-face {
  font-family: "Noto Sans CJK JP Subset";
  font-style: normal;
  font-weight: 500;
  src: local("NotoSansCJKjp-Meduim"), local("NotoSansJP-Medium"), url("/common/fonts/NotoSans_Medium.woff2") format("woff2"), url("/common/fonts/NotoSans_medium.woff") format("woff");
}

@font-face {
  font-family: "Noto Sans CJK JP Subset";
  font-style: normal;
  font-weight: 700;
  src: local("NotoSansCJKjp-Bold"), local("NotoSansJP-Bold"), url("/common/fonts/NotoSans_Bold.woff2") format("woff2"), url("/common/fonts/NotoSans_bold.woff") format("woff");
}

@font-face {
  font-family: 'ichikawa-icon';
  src: url("/common/fonts/ichikawa-icon.woff?l5ccd4") format("woff"), url("/common/fonts/ichikawa-icon.woff2?l5ccd4") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

button,
input[type="button"],
input[type="checkbox"],
input[type="image"],
input[type="radio"],
input[type="reset"],
input[type="submit"],
label,
select {
  cursor: pointer;
}

button,
input,
select,
textarea {
  vertical-align: top;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
}

button,
input[type="text"],
textarea {
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  font-family: inherit;
  line-height: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button {
  margin: 0;
  border: none;
  padding: 0;
  background-color: transparent;
  overflow: visible;
  outline: none;
}

input[type="text"]::-webkit-input-placeholder {
  opacity: 1;
}

input[type="text"]:-ms-input-placeholder {
  opacity: 1;
}

input[type="text"]::-ms-input-placeholder {
  opacity: 1;
}

input[type="text"]::placeholder {
  opacity: 1;
}

img {
  vertical-align: top;
  max-width: 100%;
}

html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

html * {
  box-sizing: border-box;
}

body {
  min-width: 1120px;
  color: #333;
  font-family: "Noto Sans", "Noto Sans CJK JP", "Noto Sans CJK JP Subset", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -moz-osx-font-smoothing: unset;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.5rem;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
}

@media screen and (max-width: 767px) {
  body {
    min-width: 0;
  }
}

a {
  color: #333;
  text-decoration: none;
  transition-property: opacity, background;
  transition-duration: .3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

:focus {
  outline: none;
}

a:focus,
input:focus,
button:focus {
  outline: .5px dotted #666;
}

/**
 * Header
 */
.header {
  z-index: 60;
  border-top: 6px solid #FCF378;
  width: 100%;
  background-color: #fff;
  /**
	* SPサブナビ
	*/
}

@media screen and (min-width: 768px) {
  .header {
    top: -100%;
    transition: top .3s;
  }
}

@media screen and (max-width: 767px) {
  .header {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
  }
}

@media screen and (min-width: 768px) {
  .header.header-scrolled {
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
  }
}

@media screen and (max-width: 767px) {
  .header {
    width: 100%;
    border-top: none;
  }
}

@media screen and (max-width: 767px) {
  .header .container {
    padding: 0;
  }
}

.header .header-upperBox {
  position: absolute;
  top: 0;
  right: calc((100% - 1120px) / 2);
  display: flex;
  justify-content: flex-end;
  background-color: #fff;
}

.header .subNav {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-top: -5px;
}

.header .subNav nav {
  display: flex;
  flex-wrap: nowrap;
}

.header .subNav-lvl1 {
  position: relative;
}

.header .subNav-lvl1:first-of-type > .subNav-item > a,
.header .subNav-lvl1:first-of-type > .subNav-item > button {
  border-radius: 0 0 0 20px;
  padding-left: 26px;
}

.header .subNav-lvl1:first-of-type .subNav-button::after {
  width: calc(100% - 30px);
}

.header .subNav-lvl1:last-of-type > .subNav-item > a,
.header .subNav-lvl1:last-of-type > .subNav-item > button {
  border-radius: 0 0 20px 0;
  padding-right: 26px;
}

.header .subNav-lvl1:last-of-type .subNav-button::after {
  width: calc(100% - 30px);
  left: auto;
  right: 10px;
}

.header .subNav-lvl1 > .subNav-item > a,
.header .subNav-lvl1 > .subNav-item > button {
  display: block;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  padding: 10px;
  background-color: #FCF378;
  outline-offset: -1px;
  transition-property: opacity, background;
  transition-duration: .3s;
}

.header .subNav-lvl1 > .subNav-item > a img,
.header .subNav-lvl1 > .subNav-item > button img {
  margin-right: 10px;
  width: 20px;
  height: auto;
}

.header .subNav-lvl1 > .subNav-item > a:hover,
.header .subNav-lvl1 > .subNav-item > button:hover {
  opacity: 1;
  background-color: #FEFAC9;
}

.header .subNav-lvl1 > .subNav-item .subNav-close-close_btn {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  padding: 10px;
  background-color: #FEFAC9;
  outline-offset: -1px;
}

.header .subNav-lvl1 > .subNav-item .subNav-close-close_btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10px;
  width: calc(100% - 20px);
  height: 2px;
  background-color: #333;
}

.header .subNav-lvl1 > .subNav-item .subNav-close-close_btn .icon {
  position: relative;
  margin-right: 14px;
  width: 20px;
  height: 20px;
}

.header .subNav-lvl1 > .subNav-item .subNav-close-close_btn .icon::before, .header .subNav-lvl1 > .subNav-item .subNav-close-close_btn .icon::after {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 7px);
  width: 15px;
  height: 2px;
  background-color: #333;
  transform-origin: center;
}

.header .subNav-lvl1 > .subNav-item .subNav-close-close_btn .icon::before {
  transform: rotate(45deg);
}

.header .subNav-lvl1 > .subNav-item .subNav-close-close_btn .icon::after {
  transform: rotate(-45deg);
}

.header .subNav-lvl1 .subNav-button .icon {
  opacity: 0;
  width: 0;
  height: 0;
  transition-property: opacity;
  transition-duration: .3s;
}

.header .subNav-lvl1 .subNav-button img {
  transition-property: opacity;
  transition-duration: .3s;
}

.header .subNav-lvl1 .subNav-button[aria-expanded="true"] {
  display: flex;
  position: relative;
  background-color: #FEFAC9;
}

.header .subNav-lvl1 .subNav-button[aria-expanded="true"]::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10px;
  width: calc(100% - 20px);
  height: 2px;
  background-color: #333;
}

.header .subNav-lvl1 .subNav-button[aria-expanded="true"] img {
  opacity: 0;
  width: 0;
  height: 0;
  margin-right: 0;
}

.header .subNav-lvl1 .subNav-button[aria-expanded="true"] .icon {
  position: relative;
  opacity: 1;
  margin-right: 14px;
  width: 20px;
  height: 20px;
}

.header .subNav-lvl1 .subNav-button[aria-expanded="true"] .icon::before, .header .subNav-lvl1 .subNav-button[aria-expanded="true"] .icon::after {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 7px);
  width: 15px;
  height: 2px;
  background-color: #333;
  transform-origin: center;
}

.header .subNav-lvl1 .subNav-button[aria-expanded="true"] .icon::before {
  transform: rotate(45deg);
}

.header .subNav-lvl1 .subNav-button[aria-expanded="true"] .icon::after {
  transform: rotate(-45deg);
}

.header .subNav-lvl2 {
  display: flex;
  position: absolute;
  opacity: 0;
  z-index: 10;
  border-radius: 0 0 20px 20px;
  bottom: 0;
  right: 0;
  padding: 9px 18px;
  min-width: 200px;
  width: auto;
  transform: translatey(100%);
  background-color: #FEFAC9;
  /* autoprefixer: off */
  animation-name: fadeIn;
  animation-duration: .3s;
  animation-fill-mode: forwards;
}

.header .subNav-lvl2[aria-hidden="true"] {
  /* autoprefixer: off */
  animation-name: fadeOut;
  animation-duration: .3s;
  animation-fill-mode: forwards;
}

.header .subNav-lvl2 > .subNav-item a {
  display: block;
  margin: 0 4px;
  transition-property: opacity;
  transition-duration: .3s;
}

.header .subNav-lvl2 > .subNav-item a:hover {
  opacity: 0.7;
}

.header .subNav .subNav-search .subNav-item {
  width: 100%;
}

.header .subNav .subNav-search .subNav-searchTextbox {
  width: calc(100% - 20px);
}

.header .subNav .subNav-search form {
  display: flex;
}

.header .subNav .subNav-search input {
  border: none;
  background-color: transparent;
  width: calc(100% - 5px);
  height: 28px;
}

@media screen and (max-width: 767px) {
  .header .subNav .subNav-search input {
    height: auto;
  }
}

.header .subNav .subNav-search .global_nav-search-text_box-text-bg {
  background: url(https://www.google.com/cse/static/images/1x/ja/branding.png) left center no-repeat;
}

.header .subNav .subNav-search .global_nav-search-text_box-text-bg:focus {
  background: #fff9a9;
}

.header .subNav .subNav-searchSubmit {
  width: 20px;
  height: 20px;
  background-position: 0 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(/zoo/assets/images/common/icon_lupe_01.png);
}

.header .subNav .subNav-snsNav {
  display: flex;
  flex-wrap: wrap;
  padding: 9px 15px;
  width: 217px;
}

.header .subNav .subNav-snsNav > .subNav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 3px;
}

.header .subNav .subNav-snsNav > .subNav-item a {
  display: block;
}

.header .subNav .subNav-snsNav > .subNav-item a .icons {
  display: block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.header .subNav .subNav-snsNav > .subNav-item a .icon-line {
  width: 24px;
  height: 23px;
  background-image: url(/zoo/assets/images/common/icon_line_01.png);
}

.header .subNav .subNav-snsNav > .subNav-item a .icon-youtube {
  width: 24px;
  height: 17px;
  background-image: url(/zoo/assets/images/common/icon_youtube_01.png);
}

.header .subNav .subNav-snsNav > .subNav-item a .icon-x {
  width: 21px;
  height: 17px;
  background-image: url(/zoo/assets/images/common/icon_x_01.png);
}

.header .subNav .subNav-snsNav > .subNav-item a .icon-facebook {
  width: 23px;
  height: 23px;
  background-image: url(/zoo/assets/images/common/icon_facebook_01.png);
}

.header .subNav .subNav-snsNav > .subNav-item a .icon-instagram {
  width: 22px;
  height: 22px;
  background-image: url(/zoo/assets/images/common/icon_instagram_01.png);
}

.header .subNav .subNav-langNav {
  padding: 9px 7px;
  right: 10%;
}

.header .subNav .subNav-langNav > .subNav-item a {
  margin: 0;
  padding: 0 11px;
  font-size: 1.5rem;
  font-weight: bold;
}

.header .subNav .subNav-langNav > .subNav-item + .subNav-item {
  border-left: 1px dotted #CEC65F;
}

.header .header-lowerBox {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
  margin: 30px 0 20px;
}

@media screen and (max-width: 767px) {
  .header .header-lowerBox {
    display: block;
    margin: 0;
  }
}

.header .header-logoBox {
  background-color: #fff;
  width: 22.32143%;
}

.header .header-logoBox img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .header .header-logoBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .header .header-logoBox a {
    margin-left: 5%;
  }
  .header .header-logoBox img {
    width: 200px;
    height: auto;
  }
}

.header .header-logo {
  display: block;
}

@media screen and (max-width: 767px) {
  .header .header-toggleGnavButton {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #FCF378;
    width: 60px;
    height: 60px;
    outline-offset: -1px;
  }
  .header .header-toggleGnavButton .icon {
    position: relative;
    width: 20px;
    height: 2px;
    background-color: #333;
    transition-property: background-color;
    transition-duration: .3s;
  }
  .header .header-toggleGnavButton .icon::before, .header .header-toggleGnavButton .icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: #333;
    transition-property: top, left, transform;
    transition-duration: .3s;
  }
  .header .header-toggleGnavButton .icon::before {
    top: -6px;
  }
  .header .header-toggleGnavButton .icon::after {
    bottom: -6px;
  }
  .header .header-toggleGnavButton .text {
    margin-top: 12px;
    margin-bottom: -12px;
    font-size: 1.2rem;
    font-weight: bold;
  }
  .header .header-toggleGnavButton[aria-expanded="true"] .icon {
    background-color: transparent;
  }
  .header .header-toggleGnavButton[aria-expanded="true"] .icon::before, .header .header-toggleGnavButton[aria-expanded="true"] .icon::after {
    top: 0;
    bottom: auto;
  }
  .header .header-toggleGnavButton[aria-expanded="true"] .icon::before {
    transform: rotate(-45deg);
  }
  .header .header-toggleGnavButton[aria-expanded="true"] .icon::after {
    transform: rotate(45deg);
  }
}

@media screen and (max-width: 767px) {
  .header .header-closeGnavButton {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    opacity: 0.7;
    background-color: transparent;
    outline-offset: -1px;
  }
}

@media screen and (max-width: 767px) {
  .header .header-navBox {
    opacity: 0;
    overflow: auto;
    overflow-x: hidden;
    max-height: calc(100vh - 60px);
    width: 100%;
    /* autoprefixer: off */
    animation-name: fadeIn;
    animation-duration: .3s;
    animation-fill-mode: forwards;
  }
  .header .header-navBox[aria-hidden="true"] {
    /* autoprefixer: off */
    animation-name: fadeOut;
    animation-duration: .3s;
    animation-fill-mode: forwards;
  }
}

.header .globalNav nav {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .header .globalNav nav {
    display: block;
    background-color: #FCF378;
  }
}

.header .globalNav-item a {
  padding: 20px 25px;
  font-size: 1.6rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .header .globalNav-item a {
    display: block;
    padding: 16px 20px;
  }
}

@media screen and (max-width: 767px) {
  .header .globalNav-item + .globalNav-item {
    border-top: 1px dotted #5E5E5E;
  }
}

.header .globalNav-lvl1 {
  position: relative;
}

@media screen and (max-width: 767px) {
  .header .globalNav-lvl1 + .globalNav-lvl1 {
    border-top: 1px dotted #707070;
  }
}

.header .globalNav-lvl1 > .globalNav-item {
  position: relative;
  padding-top: 10px;
}

@media screen and (max-width: 767px) {
  .header .globalNav-lvl1 > .globalNav-item {
    display: flex;
    flex-wrap: wrap;
    padding-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .header .globalNav-lvl1 > .globalNav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% - 9px);
    width: 18px;
    height: 7px;
    background-size: contain;
    background-repeat: no-repeat;
  }
}

@media screen and (min-width: 768px) {
  .header .globalNav-lvl1 > .globalNav-item:hover::before,
  .header .globalNav-lvl1 > .globalNav-item > a:focus::before, .header .globalNav-lvl1 > .globalNav-item.current::before {
    background-image: url(/zoo/assets/images/common/decoration_dot_02.png);
  }
}

@media screen and (max-width: 767px) {
  .header .globalNav-lvl1 > .globalNav-item a {
    position: relative;
    width: 100%;
    background-color: #FCF378;
    outline-offset: -1px;
  }
}

.header .globalNav-lvl1 > .globalNav-item a .globalNav-button {
  position: absolute;
  top: 0;
  right: 0;
}

.header .globalNav-lvl1 > .globalNav-item a .globalNav-button .arw {
  position: absolute;
  width: 20px;
  height: 8px;
  top: calc(50% - 4px);
  left: 20px;
}

.header .globalNav-lvl1 > .globalNav-item a .globalNav-button .arw::before, .header .globalNav-lvl1 > .globalNav-item a .globalNav-button .arw::after {
  content: '';
  position: absolute;
}

.header .globalNav-lvl1 > .globalNav-item a .globalNav-button .arw::before {
  top: calc(50% - 1px);
  left: 0;
  width: 14px;
  height: 2px;
  background-color: #333;
}

.header .globalNav-lvl1 > .globalNav-item a .globalNav-button .arw::after {
  top: calc(50% - 3px);
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #333;
}

.header .globalNav-lvl1 > .globalNav-item .globalNav-button {
  display: block;
  width: 57px;
  height: 57px;
  background-color: #FCF378;
  outline-offset: -1px;
}

@media screen and (max-width: 767px) {
  .header .globalNav-lvl1-hasChild > .globalNav-item > a {
    width: calc(100% - 57px);
  }
}

.header .globalNav-lvl1-hasChild > .globalNav-item .globalNav-button::before, .header .globalNav-lvl1-hasChild > .globalNav-item .globalNav-button::after {
  content: '';
  position: absolute;
  right: 25px;
  top: 19px;
  width: 2px;
  height: 20px;
  background-color: #333;
  transform-origin: center;
}

.header .globalNav-lvl1-hasChild > .globalNav-item .globalNav-button::after {
  transform: rotate(90deg);
}

.header .globalNav-lvl1-hasChild > .globalNav-item .globalNav-button[aria-expanded="true"]::before {
  transform: rotate(90deg);
}

.header .globalNav-lvl2 {
  opacity: 0;
  position: absolute;
  z-index: 15;
  border-radius: 20px;
  bottom: 0;
  left: 50%;
  min-width: 180px;
  transform: translate(-50%, 100%);
  background-color: #FEFAC9;
  /* autoprefixer: off */
  animation-name: fadeIn;
  animation-duration: .3s;
  animation-fill-mode: forwards;
}

.header .globalNav-lvl2[aria-hidden="true"] {
  /* autoprefixer: off */
  animation-name: fadeOut;
  animation-duration: .3s;
  animation-fill-mode: forwards;
}

@media screen and (max-width: 767px) {
  .header .globalNav-lvl2 {
    display: block;
    opacity: 1;
    z-index: 0;
    overflow: hidden;
    position: static;
    border-radius: 0;
    height: auto;
    width: 100%;
    transform: translate(0);
    transition-property: height;
    transition-duration: .3s;
    /* autoprefixer: off */
    animation-name: none;
    animation-duration: .3s;
    animation-fill-mode: forwards;
  }
  .header .globalNav-lvl2[aria-hidden="true"] {
    /* autoprefixer: off */
    animation-name: none;
    animation-duration: .3s;
    animation-fill-mode: forwards;
  }
}

.header .globalNav-lvl2 > .globalNav-item > a {
  display: block;
  padding: 13px 18px;
}

@media screen and (max-width: 767px) {
  .header .globalNav-lvl2 > .globalNav-item > a {
    background-color: #FEFAC9;
    outline-offset: -1px;
  }
}

.header .globalNav-lvl2 > .globalNav-item > a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .header .globalNav-lvl2 > .globalNav-item + .globalNav-item {
    border-top: none;
  }
}

.header .globalNav-lvl2 > .globalNav-item + .globalNav-item a {
  border-top: 1px dotted #CEC65F;
}

@media screen and (max-width: 767px) {
  .header .subNav {
    display: block;
    border-top: 1px dotted #707070;
    padding: 26px 20px 120px;
    background-color: #FCF378;
  }
  .header .subNav nav {
    display: block;
  }
  .header .subNav-itemList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .header .subNav-itemList .icons {
    display: inline-block;
    margin-right: 12px;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .header .subNav-itemList .icon-faq {
    background-image: url(/zoo/assets/images/common/icon_faq_01.png);
  }
  .header .subNav-itemList .icon-accessibility {
    background-image: url(/zoo/assets/images/common/icon_accessibility_01.png);
  }
  .header .subNav-itemList:nth-child(1) .subNav-item {
    display: flex;
    align-content: center;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
  }
  .header .subNav-itemList:nth-child(1) .subNav-item + .subNav-item {
    margin-left: 28px;
  }
  .header .subNav-itemList:nth-child(2) {
    display: block;
  }
  .header .subNav-search {
    display: flex;
    align-items: center;
    border-radius: 21px;
    margin-top: 20px;
    padding: 8px 20px;
    width: 100%;
    background-color: #fff;
  }
  .header .subNav-search form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .header .subNav-searchTextbox {
    width: calc(100% - 24px);
  }
  .header .subNav-searchTextbox input {
    font-size: 1.6rem;
    width: 100%;
  }
  .header .subNav .subNav-snsNav {
    display: flex;
    justify-content: center;
    align-content: center;
    margin-top: 20px;
    width: 100%;
  }
  .header .subNav .subNav-snsNav > .subNav-item {
    margin: 0 10px;
  }
  .header .subNav .subNav-snsNav > .subNav-item a {
    display: flex;
    align-content: center;
    justify-content: center;
  }
  .header .subNav .subNav-snsNav > .subNav-item a .icons {
    display: block;
    margin-right: 0;
    width: 30px;
    height: 30px;
  }
  .header .subNav .subNav-snsNav > .subNav-item a .icon-line {
    width: 32px;
    height: 30px;
  }
  .header .subNav .subNav-snsNav > .subNav-item a .icon-youtube {
    width: 32px;
    height: 22px;
  }
  .header .subNav .subNav-snsNav > .subNav-item a .icon-x {
    width: 29px;
    height: 23px;
  }
  .header .subNav .subNav-snsNav > .subNav-item a .icon-facebook {
    width: 31px;
    height: 31px;
  }
  .header .subNav .subNav-snsNav > .subNav-item a .icon-instagram {
    width: 30px;
    height: 30px;
  }
  .header .subNav-langNav {
    display: flex;
    align-content: center;
    justify-content: center;
    margin-top: 10px;
  }
  .header .subNav-langNav > .subNav-item a {
    display: block;
    padding: 0 24px !important;
  }
}

/**
* タブレット時SP表示
*/
body.tab .layoutContents {
  margin-top: 60px;
}

body.tab .header .pcOnly {
  display: none;
}

body.tab .header .container {
  width: 100%;
  max-width: 100%;
}

body.tab .header {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  width: 100%;
  border-top: none;
  /**
		* SPサブナビ
		*/
}

body.tab .header .container {
  padding: 0;
}

body.tab .header .header-lowerBox {
  display: block;
  margin: 0;
}

body.tab .header .header-logoBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

body.tab .header .header-logoBox a {
  margin-left: 5%;
}

body.tab .header .header-logoBox img {
  width: 200px;
  height: auto;
}

body.tab .header .header-toggleGnavButton {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #FCF378;
  width: 60px;
  height: 60px;
}

body.tab .header .header-toggleGnavButton .icon {
  position: relative;
  width: 20px;
  height: 2px;
  background-color: #333;
  transition-property: background-color;
  transition-duration: .3s;
}

body.tab .header .header-toggleGnavButton .icon::before, body.tab .header .header-toggleGnavButton .icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: #333;
  transition-property: top, left, transform;
  transition-duration: .3s;
}

body.tab .header .header-toggleGnavButton .icon::before {
  top: -6px;
}

body.tab .header .header-toggleGnavButton .icon::after {
  bottom: -6px;
}

body.tab .header .header-toggleGnavButton .text {
  margin-top: 12px;
  margin-bottom: -12px;
  font-size: 1.2rem;
  font-weight: bold;
}

body.tab .header .header-toggleGnavButton[aria-expanded="true"] .icon {
  background-color: transparent;
}

body.tab .header .header-toggleGnavButton[aria-expanded="true"] .icon::before, body.tab .header .header-toggleGnavButton[aria-expanded="true"] .icon::after {
  top: 0;
  bottom: auto;
}

body.tab .header .header-toggleGnavButton[aria-expanded="true"] .icon::before {
  transform: rotate(-45deg);
}

body.tab .header .header-toggleGnavButton[aria-expanded="true"] .icon::after {
  transform: rotate(45deg);
}

body.tab .header .header-navBox {
  overflow: auto;
  overflow-x: hidden;
  max-height: calc(100vh - 60px);
  padding-bottom: 100px;
  width: 100%;
}

body.tab .header .header-navBox[aria-hidden="true"] {
  display: none;
}

body.tab .header .globalNav nav {
  display: block;
  background-color: #FCF378;
}

body.tab .header .globalNav-item a {
  display: block;
  padding: 16px 20px;
}

body.tab .header .globalNav-lvl1 + .globalNav-lvl1 {
  border-top: 1px dotted #707070;
}

body.tab .header .globalNav-lvl1 > .globalNav-item {
  display: flex;
  flex-wrap: wrap;
  padding-top: 0;
}

body.tab .header .globalNav-lvl1 > .globalNav-item a {
  position: relative;
  width: 100%;
  background-color: #FCF378;
}

body.tab .header .globalNav-lvl1-hasChild > .globalNav-item > a {
  width: calc(100% - 57px);
}

body.tab .header .globalNav-lvl2 {
  display: block;
  position: static;
  z-index: 0;
  border-radius: 0;
  width: 100%;
  transform: translate(0);
}

body.tab .header .globalNav-lvl2[aria-hidden="true"] {
  display: none;
}

body.tab .header .globalNav-lvl2 > .globalNav-item > a {
  background-color: #FEFAC9;
}

body.tab .header .globalNav-lvl2 > .globalNav-item + .globalNav-item {
  border-top: none;
}

body.tab .header .subNav {
  display: block;
  border-top: 1px dotted #707070;
  padding: 26px 20px;
  background-color: #FCF378;
}

body.tab .header .subNav nav {
  display: block;
}

body.tab .header .subNav-itemList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

body.tab .header .subNav-itemList .icons {
  display: inline-block;
  margin-right: 12px;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
}

body.tab .header .subNav-itemList .icon-faq {
  background-image: url(/zoo/assets/images/common/icon_faq_01.png);
}

body.tab .header .subNav-itemList .icon-accessibility {
  background-image: url(/zoo/assets/images/common/icon_accessibility_01.png);
}

body.tab .header .subNav-itemList:nth-child(1) .subNav-item {
  display: flex;
  align-content: center;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

body.tab .header .subNav-itemList:nth-child(1) .subNav-item + .subNav-item {
  margin-left: 28px;
}

body.tab .header .subNav-itemList:nth-child(2) {
  display: block;
}

body.tab .header .subNav-search {
  display: flex;
  align-items: center;
  border-radius: 21px;
  margin-top: 20px;
  padding: 8px 20px;
  width: 100%;
  background-color: #fff;
}

body.tab .header .subNav-search form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

body.tab .header .subNav-searchTextbox {
  width: calc(100% - 24px);
}

body.tab .header .subNav-searchTextbox input {
  font-size: 1.6rem;
  width: 100%;
}

body.tab .header .subNav .subNav-snsNav {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 100%;
}

body.tab .header .subNav .subNav-snsNav > .subNav-item {
  margin: 0 10px;
}

body.tab .header .subNav .subNav-snsNav > .subNav-item a {
  display: flex;
  align-content: center;
  justify-content: center;
}

body.tab .header .subNav .subNav-snsNav > .subNav-item a .icons {
  display: block;
  margin-right: 0;
  width: 30px;
  height: 30px;
}

body.tab .header .subNav .subNav-snsNav > .subNav-item a .icon-line {
  width: 32px;
  height: 30px;
}

body.tab .header .subNav .subNav-snsNav > .subNav-item a .icon-youtube {
  width: 32px;
  height: 22px;
}

body.tab .header .subNav .subNav-snsNav > .subNav-item a .icon-x {
  width: 29px;
  height: 23px;
}

body.tab .header .subNav .subNav-snsNav > .subNav-item a .icon-facebook {
  width: 31px;
  height: 31px;
}

body.tab .header .subNav .subNav-snsNav > .subNav-item a .icon-instagram {
  width: 30px;
  height: 30px;
}

body.tab .header .subNav-langNav {
  display: flex;
  align-content: center;
  justify-content: center;
  margin-top: 10px;
}

body.tab .header .subNav-langNav > .subNav-item a {
  display: block;
  padding: 0 24px !important;
}

body.tab .header-closeGnavButton {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  opacity: 0.7;
  background-color: transparent;
  outline-offset: -1px;
}

/**
 * Footer
 */
.footer {
  position: relative;
  background-color: #FCF378;
  padding: 70px 0 46px;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 50px 0 26px;
  }
}

.footer .footer-upperBlock {
  display: flex;
}

@media screen and (max-width: 767px) {
  .footer .footer-upperBlock {
    display: block;
  }
}

.footer .footer-logoBlock {
  width: 280px;
}

@media screen and (max-width: 767px) {
  .footer .footer-logoBlock {
    margin: 0 auto;
    width: 210px;
    text-align: center;
  }
}

.footer .footer-logoBlock a {
  display: block;
  position: relative;
  width: 251px;
}

@media screen and (max-width: 767px) {
  .footer .footer-logoBlock a {
    width: 100%;
  }
}

.footer .footer-logoBlock a::after {
  content: '';
  position: absolute;
  top: 2px;
  right: -30px;
  width: 1px;
  height: 44px;
  background-color: #C7AC62;
}

@media screen and (max-width: 767px) {
  .footer .footer-logoBlock a::after {
    content: none;
  }
}

.footer .footer-logoBlock a img {
  width: 100%;
  height: auto;
}

.footer .footer-addressBlock {
  display: flex;
  justify-content: space-between;
  padding-left: 30px;
  width: calc(100% - 280px);
}

@media screen and (max-width: 767px) {
  .footer .footer-addressBlock {
    display: block;
    padding-top: 30px;
    padding-left: 0;
    width: 100%;
    font-size: 1.5rem;
  }
}

.footer .footer-addressBlock-item {
  width: calc((100% - 26px) / 2);
}

@media screen and (max-width: 767px) {
  .footer .footer-addressBlock-item {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .footer .footer-addressBlock-item + .footer-addressBlock-item {
    margin-left: 0;
    margin-top: 17px;
    width: 100%;
  }
}

.footer .footer-addressBlock-item dl {
  display: flex;
  margin: 0;
  line-height: inherit;
  width: auto;
}

.footer .footer-addressBlock-item dt, .footer .footer-addressBlock-item dd {
  padding: 0;
}

.footer .footer-addressBlock-item dt {
  border-top: none;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .footer .footer-addressBlock-item dt {
    width: 5.5em !important;
  }
}

.footer .footer-addressBlock-item dd {
  margin-left: 14px;
  word-wrap: break-word;
}

@media screen and (max-width: 767px) {
  .footer .footer-addressBlock-item dd {
    margin-top: 0;
    width: calc(100% - 5.5em) !important;
  }
}

@media screen and (min-width: 768px) {
  .footer .footer-addressBlock-item dd .fax::before {
    content: '／';
  }
}

@media screen and (max-width: 767px) {
  .footer .footer-addressBlock-item dd .fax {
    display: block;
  }
}

.footer .footer-addressBlock-item:nth-of-type(1) dl dt {
  width: 3.4em;
}

.footer .footer-addressBlock-item:nth-of-type(1) dl dd {
  width: calc(100% - 3.4em);
}

.footer .footer-addressBlock-item:nth-of-type(2) dl dt {
  width: 5.5em;
}

.footer .footer-addressBlock-item:nth-of-type(2) dl dd {
  width: calc(100% - 5.5em);
}

.footer .footer-bottomBlock {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .footer .footer-bottomBlock {
    flex-direction: column-reverse;
    align-items: center;
  }
}

.footer .footer-copyright {
  font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
  .footer .footer-copyright {
    font-size: 1.1rem;
    margin-top: 26px;
  }
}

.footer .footer-linkBlock {
  width: 42.53571%;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .footer .footer-linkBlock {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
}

.footer .footer-linkBlock a {
  display: inline-block;
  width: calc(50% - 7px);
}

.footer .footer-linkBlock a img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .footer .footer-linkBlock a {
    width: 48.35821%;
  }
}

.footer .footer-linkBlock a + a {
  margin-left: 14px;
}

@media screen and (max-width: 767px) {
  .footer .footer-linkBlock a + a {
    margin-left: 0;
  }
}

/**
 * Wrapper
 */
/**
 * Contents
 */
@media screen and (max-width: 767px) {
  .layoutContents {
    margin-top: 60px;
  }
}

.header-scrolled + .layoutContents {
  margin-top: 114px;
}

@media screen and (max-width: 767px) {
  .header-scrolled + .layoutContents {
    margin-top: 60px;
  }
}

/**
 * 下層1カラム
 */
.main-1column {
  padding-bottom: 118px;
}

/**
 * 下層2カラム
 */
.main-2column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 118px;
}

@media screen and (max-width: 767px) {
  .main-2column {
    display: block;
    padding-bottom: 70px;
  }
}

.main-2column .local_nav_box {
  width: 190px;
}

@media screen and (max-width: 767px) {
  .main-2column .local_nav_box {
    width: 100%;
  }
}

.main-2column #contents {
  width: calc(100% - 260px);
}

@media screen and (max-width: 767px) {
  .main-2column #contents {
    width: 100%;
    padding-bottom: 50px;
  }
}

/**
 * 下層 記事詳細
 */
.article-info {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.article-info time {
  width: 8.42em;
  margin-right: 5px;
  font-size: 1.4rem;
  color: #676767;
  font-weight: 500;
}

.article-catList {
  width: calc(100% - 8.42em);
}

.article-catList ul:not([class]) {
  margin-top: -7px;
  padding-left: 0;
}

.article-catList ul:not([class]) li {
  display: inline-block;
  margin: 7px 2px 0 0;
  border-radius: 20px;
  padding: calc(6px - 0.1em) 13px;
  font-size: 1.5rem;
  line-height: 1.2;
  text-indent: 0;
  background-color: #FCF378;
}

.article-catList ul:not([class]) li::before {
  content: none;
}

.article-content {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.article-content > .columns {
  margin-top: 2.375em;
}

/**
 * 汎用詳細
 */
section + section,
section + .section,
.section + section,
.section + .section,
.text-leadText_centered + section,
.text-leadText_centered + .section,
.text-leadText_centered + .mod {
  margin-top: 50px !important;
}

@media screen and (max-width: 767px) {
  section + section,
  section + .section,
  .section + section,
  .section + .section,
  .text-leadText_centered + section,
  .text-leadText_centered + .section,
  .text-leadText_centered + .mod {
    margin-top: 40px !important;
  }
}

section section,
section .section,
section section + section,
section section + .section,
section .section + section,
section .section + .section,
.section section,
.section .section,
.section section + section,
.section section + .section,
.section .section + section,
.section .section + .section {
  margin-top: 50px !important;
}

@media screen and (max-width: 767px) {
  section section,
  section .section,
  section section + section,
  section section + .section,
  section .section + section,
  section .section + .section,
  .section section,
  .section .section,
  .section section + section,
  .section section + .section,
  .section .section + section,
  .section .section + .section {
    margin-top: 40px !important;
  }
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/**
 * Page
 */
/**
 * トップ
 */
.top_page {
  /**
	* 重要なお知らせ
	*/
  /**
	* メインビジュアル スライダー
	*/
  /**
	* MV下メニュー
	*/
  /**
	* カレンダー・ニュース・x
	*/
  /**
	* イベント
	*/
  /**
	* 植物園
	*/
  /**
	* 動物紹介
	*/
}

.top_page .importantInfo {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  z-index: 10;
  padding: calc(15px - 0.3em) 30px;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.6;
  background-color: #E91717;
}

@media screen and (max-width: 767px) {
  .top_page .importantInfo {
    display: block;
    padding: 10px 5%;
    font-size: 1.5rem;
  }
}

.top_page .importantInfo-head {
  position: relative;
  border-right: 2px dotted #fff;
  width: 140px;
}

@media screen and (max-width: 767px) {
  .top_page .importantInfo-head {
    border-right: none;
    width: 100%;
    font-weight: bold;
  }
}

.top_page .importantInfo-head p {
  margin-top: 0;
}

.top_page .importantInfo-body {
  margin-left: 23px;
  width: calc(100% - 140px);
}

@media screen and (max-width: 767px) {
  .top_page .importantInfo-body {
    margin-left: 0;
    width: 100%;
  }
}

.top_page .importantInfo-body a {
  color: #fff;
  text-decoration: underline;
}

.top_page .importantInfo-body a:hover {
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .top_page .importantInfo-wrapper {
    padding: 0;
  }
}

.top_page .mainvisual {
  position: relative;
  overflow: hidden;
  padding-bottom: 70px;
}

@media screen and (max-width: 767px) {
  .top_page .mainvisual {
    padding-bottom: 0;
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .top_page .mainvisual .container {
    padding: 0;
  }
}

.top_page .mainvisual-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 90px);
  background-color: #FCF378;
}

@media screen and (max-width: 767px) {
  .top_page .mainvisual-bg {
    display: none;
  }
}

.top_page .mainvisual .swiper-container {
  overflow: visible;
}

.top_page .mainvisual-item a:not([href]):hover {
  opacity: 1;
}

.top_page .mainvisual-item img {
  width: 100%;
  height: auto;
  transform: scale(1);
  transition-property: transform;
  transition-duration: .8s;
}

.top_page .mainvisual .swiper-slide-prev img {
  transform-origin: bottom right;
  transform: scale(0.7037);
}

@media screen and (max-width: 767px) {
  .top_page .mainvisual .swiper-slide-prev img {
    transform: scale(1);
  }
}

.top_page .mainvisual .swiper-slide-next img {
  transform-origin: bottom left;
  transform: scale(0.7037);
}

@media screen and (max-width: 767px) {
  .top_page .mainvisual .swiper-slide-next img {
    transform: scale(1);
  }
}

.top_page .mainvisual .slidePagenation {
  position: absolute;
  bottom: 17px;
  right: calc((100% - 1120px) / 2);
}

@media screen and (max-width: 767px) {
  .top_page .mainvisual .slidePagenation {
    position: static;
    justify-content: center;
    padding: 8px 0;
  }
}

.top_page .mainvisual .slidePagenation-playButton {
  background-color: #fff;
}

.top_page .mainvisual .mainvisual-nav {
  position: absolute;
  width: 100%;
  height: 80px;
  left: 0;
  top: calc(50% - 40px);
}

@media screen and (max-width: 767px) {
  .top_page .mainvisual .mainvisual-nav {
    height: 64px;
    top: calc(50% - 60px);
  }
}

.top_page .mainvisual .mainvisual-nav .container {
  position: relative;
  padding: 0;
}

.top_page .mainvisual .mainvisual-nav .mainvisual-button-prev,
.top_page .mainvisual .mainvisual-nav .mainvisual-button-next {
  border-radius: 40px;
  width: 80px;
  height: 80px;
  background-color: #FCF378;
}

.top_page .mainvisual .mainvisual-nav .mainvisual-button-prev:focus,
.top_page .mainvisual .mainvisual-nav .mainvisual-button-next:focus {
  outline: .5px dotted #666;
}

@media screen and (max-width: 767px) {
  .top_page .mainvisual .mainvisual-nav .mainvisual-button-prev,
  .top_page .mainvisual .mainvisual-nav .mainvisual-button-next {
    width: 64px;
    height: 64px;
  }
}

.top_page .mainvisual .mainvisual-nav .mainvisual-button-prev::after,
.top_page .mainvisual .mainvisual-nav .mainvisual-button-next::after {
  content: none;
}

.top_page .mainvisual .mainvisual-nav .mainvisual-button-prev .arw,
.top_page .mainvisual .mainvisual-nav .mainvisual-button-next .arw {
  position: absolute;
  width: 20px;
  height: 8px;
  width: 27px;
  height: 10px;
  top: calc(50% - 5px);
  left: 7px;
  transition-property: left;
  transition-duration: .3s;
}

.top_page .mainvisual .mainvisual-nav .mainvisual-button-prev .arw::before, .top_page .mainvisual .mainvisual-nav .mainvisual-button-prev .arw::after,
.top_page .mainvisual .mainvisual-nav .mainvisual-button-next .arw::before,
.top_page .mainvisual .mainvisual-nav .mainvisual-button-next .arw::after {
  content: '';
  position: absolute;
}

.top_page .mainvisual .mainvisual-nav .mainvisual-button-prev .arw::before,
.top_page .mainvisual .mainvisual-nav .mainvisual-button-next .arw::before {
  top: calc(50% - 1px);
  left: 0;
  width: 14px;
  height: 2px;
  background-color: #333;
}

.top_page .mainvisual .mainvisual-nav .mainvisual-button-prev .arw::after,
.top_page .mainvisual .mainvisual-nav .mainvisual-button-next .arw::after {
  top: calc(50% - 3px);
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #333;
}

.top_page .mainvisual .mainvisual-nav .mainvisual-button-prev .arw::before,
.top_page .mainvisual .mainvisual-nav .mainvisual-button-next .arw::before {
  width: 20px;
}

.top_page .mainvisual .mainvisual-nav .mainvisual-button-prev .arw::after,
.top_page .mainvisual .mainvisual-nav .mainvisual-button-next .arw::after {
  top: calc(50% - 5px);
  border-width: 5px 0 5px 9px;
}

@media screen and (max-width: 767px) {
  .top_page .mainvisual .mainvisual-nav .mainvisual-button-prev .arw,
  .top_page .mainvisual .mainvisual-nav .mainvisual-button-next .arw {
    width: 20px;
    height: 8px;
  }
  .top_page .mainvisual .mainvisual-nav .mainvisual-button-prev .arw::before,
  .top_page .mainvisual .mainvisual-nav .mainvisual-button-next .arw::before {
    width: 14px;
  }
  .top_page .mainvisual .mainvisual-nav .mainvisual-button-prev .arw::after,
  .top_page .mainvisual .mainvisual-nav .mainvisual-button-next .arw::after {
    top: calc(50% - 3px);
    border-width: 3px 0 3px 6px;
  }
}

.top_page .mainvisual .mainvisual-nav .mainvisual-button-prev {
  left: -40px;
  transform: rotate(180deg);
}

@media screen and (max-width: 767px) {
  .top_page .mainvisual .mainvisual-nav .mainvisual-button-prev {
    left: -32px;
  }
}

@media screen and (min-width: 768px) {
  .top_page .mainvisual .mainvisual-nav .mainvisual-button-prev:hover .arw {
    left: 15px;
  }
}

.top_page .mainvisual .mainvisual-nav .mainvisual-button-next {
  right: -40px;
}

@media screen and (max-width: 767px) {
  .top_page .mainvisual .mainvisual-nav .mainvisual-button-next {
    right: -32px;
  }
}

@media screen and (min-width: 768px) {
  .top_page .mainvisual .mainvisual-nav .mainvisual-button-next:hover .arw {
    left: 15px;
  }
}

.top_page .importantInfo-wrapper + .mainvisual {
  margin-top: -45px;
}

@media screen and (max-width: 767px) {
  .top_page .importantInfo-wrapper + .mainvisual {
    margin-top: 0;
  }
}

.top_page .featuredMenu {
  position: relative;
  z-index: 1;
  margin-top: -110px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .top_page .featuredMenu {
    position: static;
    margin-top: 0;
    text-align: center;
  }
}

.top_page .featuredMenu nav {
  display: inline-block;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background-color: #FCF378;
}

@media screen and (max-width: 767px) {
  .top_page .featuredMenu nav {
    border-radius: 20px;
  }
}

.top_page .featuredMenu nav ul {
  display: flex;
  flex-wrap: nowrap;
  margin-top: 0;
  padding-left: 0;
}

@media screen and (max-width: 767px) {
  .top_page .featuredMenu nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.top_page .featuredMenu-item {
  position: relative;
  text-indent: 0;
}

.top_page .featuredMenu-item::before {
  content: none;
}

@media screen and (max-width: 767px) {
  .top_page .featuredMenu-item {
    width: 32.83582%;
  }
}

.top_page .featuredMenu-item + .featuredMenu-item {
  margin-top: 0;
}

.top_page .featuredMenu-item + .featuredMenu-item::before {
  content: '';
  position: absolute;
  top: calc(50% - 17px);
  left: -1px;
  border-left: 2px dotted #333;
  width: 0px;
  height: 34px;
  background: none;
}

@media screen and (max-width: 767px) {
  .top_page .featuredMenu-item:nth-of-type(4)::before {
    content: none;
  }
}

@media screen and (max-width: 767px) {
  .top_page .featuredMenu-item:nth-of-type(n + 4) a {
    padding: 4px 12px 18px;
  }
}

.top_page .featuredMenu-item a {
  display: block;
  padding: 18px 10px;
  width: 150px;
  height: 100%;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .top_page .featuredMenu-item a {
    padding: 18px 12px 0;
    width: 100%;
  }
}

.top_page .featuredMenu-item a img {
  width: auto;
  height: 40px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.top_page .featuredMenu-item a:hover {
  opacity: 1;
  background-color: #FEFAC9;
}

.top_page .featuredMenu-item .text {
  display: block;
  margin-top: 6px;
}

@media screen and (max-width: 767px) {
  .top_page .featuredMenu-item .text {
    margin-top: 8px;
    line-height: 1.3;
  }
}

.top_page .infoWrapper {
  padding: 60px 0 62px;
  /**
		* カレンダー
		*/
  /**
		* ニュース
		*/
  /**
		* x
		*/
}

@media screen and (max-width: 767px) {
  .top_page .infoWrapper {
    padding: 30px 0 40px;
  }
}

.top_page .infoWrapper > .container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .top_page .infoWrapper > .container {
    display: block;
  }
}

.top_page .infoWrapper .calenderArea {
  width: 23.57143%;
}

@media screen and (max-width: 767px) {
  .top_page .infoWrapper .calenderArea {
    width: 100%;
  }
}

.top_page .infoWrapper .calenderArea .tabBox {
  width: 100%;
}

.top_page .infoWrapper .calenderArea .tabBox ul li {
  width: 50%;
}

.top_page .infoWrapper .noCalenderInfo {
  border: 1px solid #E91717;
  border-radius: 20px;
  padding: calc(50px - .3125em) 20px;
  background-color: #FFF2F2;
}

@media screen and (max-width: 767px) {
  .top_page .infoWrapper .noCalenderInfo {
    padding: 1.3em 20px;
  }
}

.top_page .infoWrapper .noCalenderInfo-text {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.625;
  font-weight: bold;
}

.top_page .infoWrapper .noCalenderInfo-text .em {
  color: #DA0000;
}

.top_page .infoWrapper .newsArea {
  width: 44.64286%;
  margin-left: 3%;
}

@media screen and (max-width: 767px) {
  .top_page .infoWrapper .newsArea {
    margin-top: 32px;
    width: 100%;
  }
}

.top_page .infoWrapper .newsArea .tabBox {
  width: 51.2%;
}

@media screen and (max-width: 767px) {
  .top_page .infoWrapper .newsArea .tabBox {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .top_page .infoWrapper .newsArea .tabBox ul li {
    width: 50%;
  }
}

.top_page .infoWrapper .newsArea-newsWrapper[aria-hidden="true"] {
  display: none;
}

.top_page .infoWrapper .newsArea-foot {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

@media screen and (max-width: 767px) {
  .top_page .infoWrapper .newsArea-foot {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.top_page .infoWrapper .newsArea-foot .borderLink + .borderLink {
  margin-left: 1.2em;
}

.top_page .infoWrapper .xArea {
  width: 25.08929%;
}

@media screen and (max-width: 767px) {
  .top_page .infoWrapper .xArea {
    margin-top: 40px;
    width: 100%;
  }
}

.top_page .infoWrapper .xArea iframe {
  width: 100% !important;
}

.top_page .eventWrapper {
  position: relative;
  padding: 60px 0 0;
  background-color: #FCF378;
}

@media screen and (max-width: 767px) {
  .top_page .eventWrapper {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.top_page .eventWrapper.is-noEvent {
  padding-bottom: 0;
}

.top_page .eventWrapper.is-noEvent .eventWrapper-bg {
  display: none;
}

.top_page .eventWrapper-bg {
  position: absolute;
  right: 0;
  top: 384px;
  z-index: 0;
  width: 95.138888889%;
  background-color: #fff;
  height: calc(100% - 384px);
}

@media screen and (max-width: 1120px) {
  .top_page .eventWrapper-bg {
    display: none;
  }
}

.top_page .eventWrapper-title {
  position: relative;
  padding-top: 22px;
  text-align: center;
}

.top_page .eventWrapper-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: calc(50% - 28px);
  width: 56px;
  height: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(/zoo/assets/images/common/decoration_dot_01.png);
}

.top_page .eventWrapper-title .en,
.top_page .eventWrapper-title .ja {
  display: block;
}

.top_page .eventWrapper-title .en {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .top_page .eventWrapper-title .en {
    font-size: 1.5rem;
    letter-spacing: 0.08em;
  }
}

.top_page .eventWrapper-title .ja {
  font-size: 4.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .top_page .eventWrapper-title .ja {
    font-size: 3.2rem;
  }
}

.top_page .eventWrapper .legendArea {
  position: absolute;
  top: 97px;
  left: calc(50% + 170px);
  display: inline-block;
  margin-top: 0;
  border-radius: 60px;
  padding: 11px 33px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .top_page .eventWrapper .legendArea {
    display: block;
    position: static;
    margin: 16px auto 0;
    padding: 7px 14px;
    width: 76%;
    text-align: center;
  }
}

.top_page .eventWrapper .legendArea::before {
  content: '';
  position: absolute;
  top: -88px;
  left: calc(50% - 70px);
  width: 140px;
  height: 105px;
  background-size: contain;
  background-image: url(/zoo/assets/images/top/event_bg_01.png);
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .top_page .eventWrapper .legendArea::before {
    width: 130px;
    height: 97px;
    top: -60px;
    left: auto;
    right: 7.466666667%;
    background-repeat: no-repeat;
  }
}

.top_page .eventWrapper .legendArea > ul {
  display: flex;
  justify-content: center;
  margin-top: 0;
}

.top_page .eventWrapper .legendArea-item {
  display: flex;
  margin-top: 0;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: bold;
  text-indent: 0;
}

.top_page .eventWrapper .legendArea-item::before {
  content: none;
}

@media screen and (max-width: 767px) {
  .top_page .eventWrapper .legendArea-item {
    font-size: 1.4rem;
  }
}

.top_page .eventWrapper .legendArea-item p {
  line-height: 1.4;
}

.top_page .eventWrapper .legendArea-item .icon {
  position: relative;
  margin-right: 14px;
  width: 24px;
  height: auto;
}

.top_page .eventWrapper .legendArea-item .icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.top_page .eventWrapper .legendArea-item + .legendArea-item {
  position: relative;
  margin-left: 41px;
}

.top_page .eventWrapper .legendArea-item + .legendArea-item::before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: -20px;
  margin-right: 0;
  height: 100%;
  width: 1px;
  border-left: 1px dotted #C8C8C8;
  border-radius: 0;
  background: none;
}

@media screen and (max-width: 767px) {
  .top_page .eventWrapper .legendArea-item + .legendArea-item::before {
    height: calc(100% - 10px);
    top: calc(50% - (100% - 25px));
  }
}

.top_page .eventWrapper .sliderArea {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-top: 40px;
  padding-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .top_page .eventWrapper .sliderArea {
    margin-top: 30px;
    padding-bottom: 0;
  }
}

.top_page .eventWrapper .sliderArea .swiper-container {
  overflow: visible;
}

.top_page .eventWrapper .sliderArea .slidePagenation {
  position: absolute;
  right: calc((100% - 1120px) / 2);
  bottom: 13px;
  max-width: 265px;
}

@media screen and (max-width: 767px) {
  .top_page .eventWrapper .sliderArea .slidePagenation {
    position: static;
    justify-content: center;
    margin-top: 20px;
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .top_page .eventWrapper .sliderArea .slidePagenation-playButton {
    background-color: #fff;
  }
}

.top_page .eventWrapper .sliderArea .swiper-button-prev,
.top_page .eventWrapper .sliderArea .swiper-button-next {
  top: 32%;
}

.top_page .eventWrapper .sliderArea .swiper-button-prev:focus,
.top_page .eventWrapper .sliderArea .swiper-button-next:focus {
  outline: .5px dotted #666;
}

.top_page .eventWrapper.is-noEvent .sliderArea {
  overflow: visible;
  margin-top: 10px;
  padding-bottom: 90px;
}

@media screen and (max-width: 767px) {
  .top_page .eventWrapper.is-noEvent .sliderArea {
    margin-top: 2px;
    padding-bottom: 0;
  }
}

.top_page .eventWrapper .eventLink {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .top_page .eventWrapper .eventLink {
    position: static;
    margin-top: 18px;
    transform: translateX(0);
  }
}

.top_page .eventWrapper.is-noEvent {
  z-index: 10;
}

.top_page .eventWrapper.is-noEvent .eventLink {
  display: none;
}

.top_page .eventWrapper .event-noEventMessage {
  position: relative;
  margin: 0 auto;
  padding-top: 28px;
}

.top_page .eventWrapper .event-noEventMessage-text {
  display: inline-block;
  z-index: 10;
  border: 3px solid #fff;
  border-radius: 20px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .top_page .eventWrapper .event-noEventMessage-text {
    display: block;
  }
}

.top_page .eventWrapper .event-noEventMessage-text p {
  margin-top: 0;
  border: 3px solid #FCF378;
  border-radius: 20px;
  padding: calc(23px - .3em) 58px;
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.667;
}

@media screen and (max-width: 767px) {
  .top_page .eventWrapper .event-noEventMessage-text p {
    padding: calc(28px - .3em) 10px;
  }
}

.top_page .eventWrapper .event-noEventMessage-text p .em {
  color: #E91717;
}

.top_page .eventWrapper .event-noEventMessage-image {
  position: absolute;
  left: -189px;
  bottom: -104px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .top_page .eventWrapper .event-noEventMessage-image {
    position: static;
    margin: 24px auto -10px;
    width: 79.09091%;
  }
  .top_page .eventWrapper .event-noEventMessage-image img {
    width: 100%;
    height: auto;
  }
}

.top_page .botanical {
  position: relative;
  overflow: hidden;
  padding-top: 154px;
  padding-bottom: 270px;
  background-color: #FCF378;
}

@media screen and (max-width: 767px) {
  .top_page .botanical {
    padding-top: 50px;
    padding-bottom: 0;
    background-color: #fff;
  }
}

.top_page .botanical-bg {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  background-color: #fff;
  width: 95.138888889%;
  height: 100%;
}

.top_page .botanical-bg::after {
  content: '';
  position: absolute;
  right: 0;
  top: 168px;
  width: 59.027777778vw;
  height: 390px;
  background-color: #39BE5D;
}

@media screen and (max-width: 767px) {
  .top_page .botanical-bg {
    display: none;
  }
}

.top_page .botanical .container {
  position: relative;
}

.top_page .botanical-textBlock {
  position: relative;
}

.top_page .botanical-textBlock::before {
  content: '';
  position: absolute;
  top: -90px;
  right: -125px;
  width: 895px;
  height: 570px;
  background-image: url(../../media/Screenshot%202026-02-19%20185836.png);
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .top_page .botanical-textBlock::before {
    content: none;
  }
}

.top_page .botanical-textBlockInner {
  padding-right: 10px;
  width: 31.25%;
}

@media screen and (max-width: 767px) {
  .top_page .botanical-textBlockInner {
    padding-right: 0;
    width: 100%;
  }
}

.top_page .botanical-textBlockInner p {
  margin-top: 0;
  font-size: 1.7rem;
  line-height: 1.7647;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .top_page .botanical-textBlockInner p {
    font-size: 1.6rem;
    letter-spacing: 0;
  }
}

.top_page .botanical-textBlockInner .roundLinkButton {
  text-align: left;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .top_page .botanical-textBlockInner .roundLinkButton {
    margin-top: 30px;
    text-align: center;
  }
}

.top_page .botanical-imageBlock {
  margin-top: 30px;
  margin-right: -5.5%;
  width: 105.5%;
}

.top_page .animal .container {
  position: relative;
  padding-top: 90px;
  padding-bottom: 134px;
}

@media screen and (max-width: 767px) {
  .top_page .animal .container {
    padding-top: 50px;
    padding-bottom: 127px;
  }
}

@media screen and (max-width: 767px) {
  .top_page .animal .container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(5% + 11px);
    width: 54px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-image: url(/zoo/assets/images/top/animal_bg_05.png);
  }
}

.top_page .animal-bg {
  position: absolute;
  top: 0;
  right: calc(75% - 30px);
  width: calc(312px + ((100vw - 1120px) / 2));
  height: 100%;
  background-color: #FFB350;
}

@media screen and (max-width: 1120px) {
  .top_page .animal-bg {
    width: 312px;
  }
}

@media screen and (max-width: 767px) {
  .top_page .animal-bg {
    top: 87.466666667vw;
    height: calc(100% - 87.466666667vw);
    right: auto;
    left: -5vw;
    width: calc(77.611940299% + 5vw);
  }
}

.top_page .animal-bg::before {
  content: '';
  position: absolute;
  bottom: 275px;
  right: 170px;
  width: 165px;
  height: 174px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(/zoo/assets/images/top/animal_bg_03.png);
}

@media screen and (max-width: 767px) {
  .top_page .animal-bg::before {
    right: 20px;
    bottom: 10px;
    width: 53px;
    height: 99px;
    background-image: url(/zoo/assets/images/top/animal_bg_05.png);
  }
}

@media screen and (max-width: 767px) {
  .top_page .animal-bg::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: calc(8px + 5vw);
    width: 167px;
    height: 112px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(/zoo/assets/images/top/animal_bg_01.png);
  }
}

.top_page .animal-bg-image::before, .top_page .animal-bg-image::after {
  content: '';
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
}

.top_page .animal-bg-image::before {
  top: 0;
  right: 47px;
  width: 239px;
  height: 154px;
  background-image: url(/zoo/assets/images/top/animal_bg_01.png);
  transform: translateY(-100%);
}

@media screen and (max-width: 767px) {
  .top_page .animal-bg-image::before {
    content: none;
  }
}

.top_page .animal-bg-image::after {
  top: 10px;
  right: 186px;
  width: 83px;
  height: 71px;
  background-image: url(/zoo/assets/images/top/animal_bg_04.png);
}

@media screen and (max-width: 767px) {
  .top_page .animal-bg-image::after {
    content: none;
  }
}

.top_page .animal-firstBlock {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .top_page .animal-firstBlock {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .top_page .animal-firstBlock .dotTitle01 {
    padding-top: 0;
  }
}

.top_page .animal-textBlock {
  width: 22.39286%;
}

@media screen and (max-width: 767px) {
  .top_page .animal-textBlock {
    width: 100%;
  }
}

.top_page .animal-textBlock > p {
  margin-top: 0;
}

.top_page .animal-textBlock .roundLinkButton {
  text-align: left;
  margin-top: 48px;
}

@media screen and (max-width: 767px) {
  .top_page .animal-textBlock .roundLinkButton {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .top_page .animal-introduction + .roundLinkButton {
    margin-top: 30px;
  }
}

.top_page .animal-introduction-lead {
  width: 73.35714%;
}

@media screen and (max-width: 767px) {
  .top_page .animal-introduction-lead {
    margin-top: 38px;
    width: 100%;
  }
}

.top_page .animal .column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 38px;
  padding: 0;
  width: 100%;
  /* 2カラム */
  /* 3カラム */
}

@media screen and (max-width: 767px) {
  .top_page .animal .column {
    display: block;
    margin-top: 0;
  }
}

.top_page .animal .column-2 .column-item {
  margin: 24px 0 0 0;
  width: calc((100% - 38px * 2) / 2);
}

@media screen and (max-width: 767px) {
  .top_page .animal .column-2 .column-item {
    margin-top: 20px;
    width: 100%;
  }
}

.top_page .animal .column-2 .column-item:nth-child(-n+2) {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .top_page .animal .column-2 .column-item:nth-child(-n+2) {
    margin-top: 20px;
  }
}

.top_page .animal .animal-firstBlock .column-2 .column-item-left {
    margin: -38px 0px 0px 0px;
    width: calc((100% - 12px * -14) / 2);
}
.top_page .animal .animal-firstBlock .column-2 .column-item-right {
    margin: -38px 0px 0px 0px;
    width: calc((100% - 12px * 17) / 2);
}

.top_page .animal .column-3 .column-item {
  margin: 24px 0 0 0;
  width: calc((100% - 38px * 2) / 3);
}

@media screen and (max-width: 767px) {
  .top_page .animal .column-3 .column-item {
    margin-top: 20px;
    width: 100%;
  }
}

.top_page .animal .column-3 .column-item:nth-child(-n+3) {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .top_page .animal .column-3 .column-item:nth-child(-n+3) {
    margin-top: 20px;
  }
}

.top_page .dialyBanner {
  position: relative;
  margin: 80px auto 0;
  width: 840px;
}

@media screen and (max-width: 767px) {
  .top_page .dialyBanner {
    width: calc(100% - 10px);
    margin: 40px 10px 0 0;
  }
}

.top_page .dialyBanner::after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -190px;
  left: -173px;
  width: 306px;
  height: 325px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(/zoo/assets/images/top/animal_bg_02.png);
}

@media screen and (max-width: 767px) {
  .top_page .dialyBanner::after {
    content: none;
  }
}

.top_page .dialyBanner a {
  position: relative;
  display: block;
  box-shadow: 12px 12px 0px 0px #ffb350;
}

@media screen and (max-width: 767px) {
  .top_page .dialyBanner a {
    box-shadow: 10px 10px 0px 0px #ffb350;
  }
}

.top_page .dialyBanner a:hover {
  opacity: 1;
}

.top_page .dialyBanner a:hover .dialyBanner-inner {
  top: 6px;
  left: 6px;
}

.top_page .dialyBanner-arrow {
  position: absolute;
  top: calc(50% - 30px);
  right: -12px;
  border-radius: 30px 0 0 30px;
  width: 43px;
  height: 60px;
  background-color: #FCF378;
}

@media screen and (max-width: 767px) {
  .top_page .dialyBanner-arrow {
    right: -10px;
  }
}

.top_page .dialyBanner-arrow .arw {
  position: absolute;
  width: 20px;
  height: 8px;
  z-index: 1;
  right: 5px;
  top: calc(50% - 4px);
}

.top_page .dialyBanner-arrow .arw::before, .top_page .dialyBanner-arrow .arw::after {
  content: '';
  position: absolute;
}

.top_page .dialyBanner-arrow .arw::before {
  top: calc(50% - 1px);
  left: 0;
  width: 14px;
  height: 2px;
  background-color: #333;
}

.top_page .dialyBanner-arrow .arw::after {
  top: calc(50% - 3px);
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #333;
}

.top_page .dialyBanner-inner {
  display: flex;
  position: relative;
  top: 0;
  left: 0;
  background-color: #fff;
  transition-property: top, left;
  transition-duration: .3s;
}

@media screen and (max-width: 767px) {
  .top_page .dialyBanner-inner {
    display: block;
  }
}

.top_page .dialyBanner-textBlock {
  width: 50%;
  padding: 60px 35px 60px 55px;
  background-image: url(/zoo/assets/images/common/bg_grid_01.png);
  background-size: 100%;
}

@media screen and (max-width: 767px) {
  .top_page .dialyBanner-textBlock {
    padding: 30px 20px;
    width: 100%;
    text-align: center;
  }
}

.top_page .dialyBanner-textBlock p {
  margin-top: 0;
  font-size: 1.7rem;
}

@media screen and (max-width: 767px) {
  .top_page .dialyBanner-textBlock p {
    font-size: 1.5rem;
  }
}

.top_page .dialyBanner-imgBlock {
  width: 50%;
  background: url("/zoo/assets/images/top/animal_img_05.png") no-repeat center/cover;
}

@media screen and (max-width: 767px) {
  .top_page .dialyBanner-imgBlock {
    width: 100%;
  }
}

.top_page .dialyBanner-imgBlock img {
  width: 100%;
  height: auto;
}

.top_page .dialyBanner-title {
  display: inline-block;
  position: relative;
  margin-bottom: 30px;
  padding-right: 40px;
  padding-bottom: 10px;
  font-size: 3.6rem;
  line-height: 1.194444444;
  letter-spacing: 0.1em;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .top_page .dialyBanner-title {
    margin-bottom: 20px;
    padding-right: 30px;
    padding-bottom: 5px;
    font-size: 2.6rem;
  }
}

.top_page .dialyBanner-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 25px);
  height: 2px;
  background-color: #333;
}

@media screen and (max-width: 767px) {
  .top_page .dialyBanner-title::before {
    width: calc(100% - 5px);
  }
}

.top_page .dialyBanner-title::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 47px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(/zoo/assets/images/common/icon_pencil_01.png);
}

@media screen and (max-width: 767px) {
  .top_page .dialyBanner-title::after {
    top: 0px;
    width: 25px;
    height: 32px;
  }
}

/**
 * Module
 */
/**
 * 角丸リンクボタン
 */
.roundLinkButton {
  text-align: center;
}

.roundLinkButton a {
  position: relative;
  display: inline-block;
  border: 2px solid #333;
  border-radius: 60px;
  padding: 15px 40px;
  min-width: 230px;
  text-align: center;
  font-size: 1.7rem;
  font-weight: bold;
  background-color: #FCF378;
}

@media screen and (max-width: 767px) {
  .roundLinkButton a {
    width: 285px;
  }
}

.roundLinkButton a .arw {
  position: absolute;
  width: 20px;
  height: 8px;
  top: calc(50% - 4px);
  right: 15px;
  transition-property: right;
  transition-duration: .3s;
}

.roundLinkButton a .arw::before, .roundLinkButton a .arw::after {
  content: '';
  position: absolute;
}

.roundLinkButton a .arw::before {
  top: calc(50% - 1px);
  left: 0;
  width: 14px;
  height: 2px;
  background-color: #333;
}

.roundLinkButton a .arw::after {
  top: calc(50% - 3px);
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #333;
}

.roundLinkButton a:hover {
  opacity: 1;
  background-color: #FFCB3B;
}

.roundLinkButton a:hover .arw {
  right: 11px;
}

.link-linkBtn {
  text-align: center;
  position: relative;
  display: inline-block;
  margin-top: 30px;
  margin-right: 1em;
  border: 2px solid #333;
  border-radius: 60px;
  padding: 15px 40px;
  min-width: 230px;
  text-align: center;
  font-size: 1.7rem;
  font-weight: bold;
  background-color: #FCF378;
  text-decoration: none !important;
}

@media screen and (max-width: 767px) {
  .link-linkBtn {
    display: block;
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto;
    padding: calc(21px - .5em) 40px;
    width: 285px;
  }
}

.link-linkBtn:hover {
  opacity: 1;
  background-color: #FFCB3B;
}

.link-linkBtn:hover::before {
  right: calc(11px + 6px);
}

.link-linkBtn:hover::after {
  right: 11px;
}

.link-linkBtn::before, .link-linkBtn::after {
  content: '';
  position: absolute;
  transition-property: right;
  transition-duration: .3s;
}

.link-linkBtn::before {
  top: calc(50% - 1px);
  right: calc(15px + 6px);
  width: 14px;
  height: 2px;
  background-color: #333;
}

.link-linkBtn::after {
  top: calc(50% - 3px);
  right: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #333;
}

.link-linkBtn-left {
  text-align: left;
}

.link-linkBtn-center {
  text-align: center;
}

.link-linkBtn-right {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .link-linkBtn-left,
  .link-linkBtn-right {
    text-align: center;
  }
}

.text-center .link-linkBtn,
.text-right .link-linkBtn {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .text-left .link-linkBtn,
  .text-center .link-linkBtn,
  .text-right .link-linkBtn {
    display: inline-block;
  }
}

/**
 * リストリンク
 */
ul.link-linkList {
  margin-top: 1.6em;
}

ul.link-linkList li {
  position: relative;
  padding-left: 32px;
  text-indent: 0 !important;
  line-height: 1.8;
}

ul.link-linkList li::after, ul.link-linkList li::before {
  content: '';
  position: absolute;
}

ul.link-linkList li::before {
  top: 0.7em;
  left: 0;
  width: 14px;
  height: 2px;
  background-color: #333;
}

ul.link-linkList li::after {
  top: calc(0.7em - 3px);
  left: 14px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #333;
}

ul.link-linkList li + li,
ul.link-linkList li ul, ul.link-linkList li ol {
  margin-top: calc(1.25em - .3em);
}

ul.link-linkList li ul {
  padding-left: 4px;
}

ul.link-linkList li li::before {
  top: 0.7em;
  left: 0;
  width: 14px;
  height: 2px;
  background-color: #333;
}

ul.link-linkList li li li::before {
  top: 0.7em;
  left: 0;
  width: 14px;
  height: 2px;
  background-color: #333;
}

ul.link-linkList li a {
  text-decoration: underline;
}

ul.link-linkList li a:hover {
  text-decoration: none;
  opacity: 0.7;
}

/**
 * 下線リンク
 */
.borderLink a {
  position: relative;
  padding-bottom: 5px;
  padding-right: 28px;
  font-size: 1.6rem;
  font-weight: bold;
  cursor: pointer;
}

.borderLink a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 28px);
  height: 2px;
  background-color: #333;
  transition-property: width;
  transition-duration: .3s;
}

.borderLink a:hover::before {
  width: 100%;
}

.borderLink .arw {
  position: absolute;
  width: 20px;
  height: 8px;
  top: calc(50% - 4px);
  right: 0;
}

.borderLink .arw::before, .borderLink .arw::after {
  content: '';
  position: absolute;
}

.borderLink .arw::before {
  top: calc(50% - 1px);
  left: 0;
  width: 14px;
  height: 2px;
  background-color: #333;
}

.borderLink .arw::after {
  top: calc(50% - 3px);
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #333;
}

/**
 * テキスト
 */
.text-leadText {
  margin-top: 1.6em;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .text-leadText {
    line-height: 1.8;
  }
}

.text-leadText_centered {
  margin-top: 1.3em;
  text-align: center;
  margin-top: calc(23px - .4em);
  line-height: 1.8;
}

/**
 * テキスト大
 */
.text-large {
  margin-top: 1.3em;
  font-size: 1.7rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .text-large {
    margin-top: 1.25em;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.text-large a {
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .text-large {
    margin-top: 1.25em;
    font-size: 1.5rem;
  }
}

/**
 * テキスト標準
 */
p:not([class]),
.text-left,
.text-center,
.text-right {
  margin-top: 1.3em;
  line-height: 1.8;
  /* 斜体 */
  /* アンダーライン */
  /* 上付き文字・下付き文字 */
}

@media screen and (max-width: 767px) {
  p:not([class]),
  .text-left,
  .text-center,
  .text-right {
    margin-top: 1.25em;
    font-size: 1.5rem;
  }
}

p:not([class]) i:not([class]),
.text-left i:not([class]),
.text-center i:not([class]),
.text-right i:not([class]) {
  font-style: italic;
}

p:not([class]) u:not([class]),
.text-left u:not([class]),
.text-center u:not([class]),
.text-right u:not([class]) {
  text-decoration: underline;
}

p:not([class]) sup:not([class]),
.text-left sup:not([class]),
.text-center sup:not([class]),
.text-right sup:not([class]) {
  font-size: 1rem;
  vertical-align: super;
}

p:not([class]) sub:not([class]),
.text-left sub:not([class]),
.text-center sub:not([class]),
.text-right sub:not([class]) {
  font-size: 1rem;
  vertical-align: sub;
}

p:not([class]) a,
.text-left a,
.text-center a,
.text-right a {
  text-decoration: underline;
}

p:not([class]) a:hover,
.text-left a:hover,
.text-center a:hover,
.text-right a:hover {
  text-decoration: none;
  opacity: 0.7;
}

p:not([class]) .m-newLabel,
.text-left .m-newLabel,
.text-center .m-newLabel,
.text-right .m-newLabel {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 40px;
  padding: 10px;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.3125;
  font-weight: bold;
  color: #fff;
  background-color: #E5007C;
}

@media screen and (max-width: 767px) {
  p:not([class]) .m-newLabel,
  .text-left .m-newLabel,
  .text-center .m-newLabel,
  .text-right .m-newLabel {
    left: 15px;
    font-size: 1.5rem;
    line-height: 1.4;
    padding: 10px 14px;
  }
}

p:not([class]) .m-newLabel::before,
.text-left .m-newLabel::before,
.text-center .m-newLabel::before,
.text-right .m-newLabel::before {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 0;
  padding-top: 15.476190476%;
  width: 100%;
  height: 0;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-image: url(/zoo/assets/images/common/decoration_ribbon_01.png);
  transform: translateY(100%);
}

p:not([class]) .m-newLabel .new,
.text-left .m-newLabel .new,
.text-center .m-newLabel .new,
.text-right .m-newLabel .new {
  position: relative;
  display: block;
  margin-bottom: 2px;
  padding: 0 13px;
}

@media screen and (max-width: 767px) {
  p:not([class]) .m-newLabel .new,
  .text-left .m-newLabel .new,
  .text-center .m-newLabel .new,
  .text-right .m-newLabel .new {
    font-size: 1.4rem;
  }
}

p:not([class]) .m-newLabel .new::before, p:not([class]) .m-newLabel .new::after,
.text-left .m-newLabel .new::before,
.text-left .m-newLabel .new::after,
.text-center .m-newLabel .new::before,
.text-center .m-newLabel .new::after,
.text-right .m-newLabel .new::before,
.text-right .m-newLabel .new::after {
  content: '';
  position: absolute;
  top: 6px;
  width: 2px;
  height: 12px;
  background-color: #fff;
}

p:not([class]) .m-newLabel .new::before,
.text-left .m-newLabel .new::before,
.text-center .m-newLabel .new::before,
.text-right .m-newLabel .new::before {
  left: 0;
  transform-origin: left top;
  transform: rotate(-35deg);
}

p:not([class]) .m-newLabel .new::after,
.text-left .m-newLabel .new::after,
.text-center .m-newLabel .new::after,
.text-right .m-newLabel .new::after {
  right: 0;
  transform-origin: right top;
  transform: rotate(35deg);
}

/**
 * テキスト小
 */
.text-small {
  margin-top: 1.3em;
  font-size: 1.3rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 767px) {
  .text-small {
    margin-top: 1.25em;
    font-size: 1.3rem;
  }
}

/**
 * 太字・中太字・赤字・赤太字・青字・青太字
 */
.text-bold {
  font-weight: bold;
}

.text-medium {
  font-weight: 500;
}

.text-red {
  color: #D22828;
}

.text-bold.text-red {
  color: #D22828;
  font-weight: bold;
}

.text-blue {
  color: #2F6EC2;
}

.text-bold.text-blue {
  color: #2F6EC2;
  font-weight: bold;
}

/**
 * 順不同リスト
 */
ul:not([class]) {
  margin: calc(32px - .3em) 0 0 0;
  padding-left: 17px;
}

ul:not([class]) ul,
ul:not([class]) ol {
  margin-top: calc(14px - 0.2em);
}

ul:not([class]) ul:not([class]),
ul:not([class]) ol:not([class]) {
  padding-left: 20px;
}

ul:not([class]) > li,
ul:not([class]) ul:not([class]) li {
  list-style-type: none;
  text-indent: -17px;
  line-height: 1.8;
}

ul:not([class]) > li::before,
ul:not([class]) ul:not([class]) li::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  border-radius: 5px;
  width: 5px;
  height: 5px;
  margin-right: 12px;
  background-color: #39BE5D;
}

ul:not([class]) > li ol li::before,
ul:not([class]) ul:not([class]) li ol li::before {
  background-color: transparent;
}

ul:not([class]) > li + li,
ul:not([class]) ul:not([class]) li + li {
  margin-top: calc(14px - 0.4em);
}

ul:not([class]) > li li::before,
ul:not([class]) ul:not([class]) li li::before {
  background-color: #FFB350;
}

ul:not([class]) > li li li::before,
ul:not([class]) ul:not([class]) li li li::before {
  background-color: #39BE5D;
}

ul:not([class]) > li a,
ul:not([class]) ul:not([class]) li a {
  text-decoration: underline;
}

ul:not([class]) > li a:hover,
ul:not([class]) ul:not([class]) li a:hover {
  text-decoration: none;
  opacity: 0.7;
}

/**
 * 順不同リスト任意文字
 */
ul.list-indentList {
  margin: calc(32px - .3em) 0 0 0;
}

ul.list-indentList li {
  padding-left: 1em;
  line-height: 1.8;
  text-indent: -1em;
}

ul.list-indentList li + li {
  margin-top: calc(14px - 0.4em);
}

ul.list-indentList ul {
  margin-top: calc(14px - 0.4em);
  padding-left: 0;
  padding-left: 0;
}

ul.list-indentList ul li::before {
  content: none;
}

ul.list-indentList a {
  text-decoration: underline;
}

ul.list-indentList a:hover {
  text-decoration: none;
  opacity: 0.7;
}

ol:not([class]) {
  margin: calc(32px - .3em) 0 0 0;
  padding-left: 1em;
  counter-reset: listCounter;
}

ol:not([class]) ol, ol:not([class]) ul {
  margin-top: calc(14px - 0.4em);
  padding-left: 24px;
}

ol:not([class]) > li,
ol:not([class]) ol li {
  counter-increment: listCounter;
  list-style-type: none;
  text-indent: -0.5em;
  line-height: 1.8;
}

ol:not([class]) > li::before,
ol:not([class]) ol li::before {
  content: counter(listCounter) ".";
  display: inline-block;
  margin-right: 4px;
  border-radius: 0;
  height: auto;
  width: auto;
  vertical-align: middle;
  color: #008500;
  background-color: transparent;
}

ol:not([class]) > li + li,
ol:not([class]) ol li + li {
  margin-top: calc(14px - 0.4em);
}

ol:not([class]) > li li::before,
ol:not([class]) ol li li::before {
  color: #C84400;
}

ol:not([class]) > li li li::before,
ol:not([class]) ol li li li::before {
  color: #008A00;
}

ol:not([class]) a {
  text-decoration: underline;
}

ol:not([class]) a:hover {
  text-decoration: none;
  opacity: 0.7;
}

/**
 * 説明リスト
 */
dl:not([class]) {
  display: table;
  margin: calc(32px - .3em) 0 0 0;
  width: 100%;
  border-collapse: collapse;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  dl:not([class]) {
    display: block;
    margin: calc(42px - .4em) 0 0 0;
  }
}

dl:not([class]) > div {
  border-top: 1px dotted #858585;
  display: table-row;
}

@media screen and (max-width: 767px) {
  dl:not([class]) > div {
    padding: calc(18px - .4em) 0 calc(20px - .4em);
    display: block;
  }
}

dl:not([class]) > div:last-of-type {
  border-bottom: 1px dotted #858585;
}

dl:not([class]) > div:last-of-type dt {
  border-bottom: 1px solid #858585;
}

@media screen and (max-width: 767px) {
  dl:not([class]) > div:last-of-type dt {
    border-bottom: none;
  }
}

dl:not([class]) a {
  text-decoration: underline;
}

dl:not([class]) a:hover {
  text-decoration: none;
  opacity: 0.7;
}

dt, dd {
  display: table-cell;
  padding: calc(16px - .3em) 0;
}

@media screen and (max-width: 767px) {
  dt, dd {
    display: block;
    padding: 0;
    width: 100% !important;
  }
}

dt {
  border-top: 1px solid #858585;
  position: relative;
  font-weight: bold;
  width: 190px;
}

@media screen and (max-width: 767px) {
  dt {
    width: 100%;
    border-top: none;
  }
}

dd {
  padding: calc(16px - .3em) 0 calc(16px - .3em) 1.5em;
}

@media screen and (max-width: 767px) {
  dd {
    width: 100%;
    margin-top: calc(14px - .4em);
    padding: 0;
  }
}

/**
 * テーブル
 */
table {
  border: solid #DCDCDC;
  border-collapse: separate;
  border-spacing: 0;
  border-width: 1px 0 0 1px;
  margin: calc(32px - .2em) 0 0 0;
  width: 100%;
  line-height: 1.6;
}

th, td {
  padding: calc(20px - .2em) 18px;
  border: solid #DCDCDC;
  border-width: 0 1px 1px 0;
  vertical-align: top;
  word-break: break-all;
  word-wrap: break-word;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  th, td {
    padding: calc(15px - .4em) 14px;
    width: initial !important;
  }
}

th, .th {
  background-color: #F5F4E8;
  font-weight: bold;
  text-align: left;
}

@media screen and (max-width: 767px) {
  table.table-responsive th, table.table-responsive td {
    box-sizing: border-box;
    display: block;
    width: 100% !important;
  }
}

@media screen and (max-width: 767px) {
  .table-scroll {
    overflow: auto;
    white-space: nowrap;
  }
}

/**
 * 左寄せ・中央寄せ・右寄せリンクボタン
 */
.img-center {
  margin-left: auto;
  margin-right: auto;
}

.img-left {
  margin-left: 0;
  margin-right: auto;
}

.img-right {
  margin-left: auto;
  margin-right: 0;
}

/**
 * 日英表記タイトル
 */
.dotTitle01 {
  position: relative;
  margin-bottom: 23px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .dotTitle01 {
    text-align: center;
    margin-bottom: 8px;
  }
}

.dotTitle01::before {
  content: '';
  display: block;
  margin-bottom: 5px;
  width: 50px;
  height: 12px;
  background-image: url(/zoo/assets/images/common/decoration_dot_01.png);
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .dotTitle01::before {
    content: '';
    margin: 0 auto 5px;
  }
}

.dotTitle01 .en,
.dotTitle01 .ja {
  display: block;
}

.dotTitle01 .en {
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .dotTitle01 .en {
    font-size: 1.6rem;
  }
}

.dotTitle01 .ja {
  font-size: 4.2rem;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .dotTitle01 .ja {
    margin-top: -3px;
    font-size: 3.2rem;
  }
}

/**
 * パーツリスト用タイトル
 */
h2[id^="no0"] {
  margin-top: 100px;
}

h3[id^="no0"] {
  background-color: #e2e2e2;
  border-left: 5px solid #000000;
  font-size: 2rem;
  padding: 5px 0 5px 10px !important;
  margin: 50px 0 40px !important;
  border-bottom: none !important;
}

h3[id^="no0"]::after {
  content: none !important;
}

/**
 * 汎用タイトル
 */
/* h1 */
.h1,
h1:not([class]),
.lookH1 {
  position: relative;
  margin-bottom: 26px;
  padding: calc(23px - 0.3em) 28px calc(20px - 0.3em);
  font-size: 2.8rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: bold;
  background-color: #FEFCD6;
}

@media screen and (max-width: 767px) {
  .h1,
  h1:not([class]),
  .lookH1 {
    margin-bottom: 20px;
    padding: calc(20px - 0.3em) 28px calc(20px - 0.3em);
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

.h1::before, .h1::after,
h1:not([class])::before,
h1:not([class])::after,
.lookH1::before,
.lookH1::after {
  content: '';
  position: absolute;
  left: 0;
  width: 4px;
  height: calc(50% - 0.47em);
}

.h1::before,
h1:not([class])::before,
.lookH1::before {
  bottom: 50%;
  background-color: #FFB350;
}

.h1::after,
h1:not([class])::after,
.lookH1::after {
  top: 50%;
  background-color: #39BE5D;
}

/* h2 */
.h2,
h2:not([class]),
.lookH2 {
  position: relative;
  margin: calc(38px - 0.3em) 0;
  padding-left: 21px;
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .h2,
  h2:not([class]),
  .lookH2 {
    margin: calc(32px - 0.25em) 0;
    padding-left: 17px;
    font-size: 2.4rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
  }
}

.h2::before,
h2:not([class])::before,
.lookH2::before {
  content: '';
  position: absolute;
  top: calc(50% - 17px);
  left: 0;
  width: 5px;
  height: 35px;
  background-size: contain;
  background-position: 0 0;
  background-image: url(/zoo/assets/images/common/decoration_dot_03.png);
}

@media screen and (max-width: 767px) {
  .h2::before,
  h2:not([class])::before,
  .lookH2::before {
    top: calc(50% - 14px);
    width: 4px;
    height: 28px;
  }
}

.h2 a,
.h2 .hlink,
h2:not([class]) a,
h2:not([class]) .hlink,
.lookH2 a,
.lookH2 .hlink {
  display: block;
  padding-left: 39px;
  position: absolute;
  width: 20px;
  height: 8px;
  position: relative;
  width: 100%;
  height: auto;
}

.h2 a::before, .h2 a::after,
.h2 .hlink::before,
.h2 .hlink::after,
h2:not([class]) a::before,
h2:not([class]) a::after,
h2:not([class]) .hlink::before,
h2:not([class]) .hlink::after,
.lookH2 a::before,
.lookH2 a::after,
.lookH2 .hlink::before,
.lookH2 .hlink::after {
  content: '';
  position: absolute;
}

.h2 a::before,
.h2 .hlink::before,
h2:not([class]) a::before,
h2:not([class]) .hlink::before,
.lookH2 a::before,
.lookH2 .hlink::before {
  top: calc(50% - 1px);
  left: 0;
  width: 14px;
  height: 2px;
  background-color: #333;
}

.h2 a::after,
.h2 .hlink::after,
h2:not([class]) a::after,
h2:not([class]) .hlink::after,
.lookH2 a::after,
.lookH2 .hlink::after {
  top: calc(50% - 3px);
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #333;
}

.h2 a::before,
.h2 .hlink::before,
h2:not([class]) a::before,
h2:not([class]) .hlink::before,
.lookH2 a::before,
.lookH2 .hlink::before {
  width: 21px;
}

.h2 a::after,
.h2 .hlink::after,
h2:not([class]) a::after,
h2:not([class]) .hlink::after,
.lookH2 a::after,
.lookH2 .hlink::after {
  top: calc(50% - 4px);
  right: auto;
  left: 21px;
  border-width: 4.5px 0 4.5px 8px;
}

.h2 a:hover,
.h2 .hlink:hover,
h2:not([class]) a:hover,
h2:not([class]) .hlink:hover,
.lookH2 a:hover,
.lookH2 .hlink:hover {
  opacity: 0.7;
}

.h2_centered,
.lookH2_centered {
  position: relative;
  margin-bottom: calc(38px - 0.3em);
  padding-bottom: calc(22px - 0.3em);
  text-align: center;
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .h2_centered,
  .lookH2_centered {
    margin-bottom: calc(32px - 0.25em);
    font-size: 2.4rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
  }
}

.h2_centered::before,
.lookH2_centered::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: calc(50% - 2px);
  width: 5px;
  height: 35px;
  background-size: contain;
  background-position: 0 0;
  background-image: url(/zoo/assets/images/common/decoration_dot_03.png);
  transform: rotate(90deg);
}

@media screen and (max-width: 767px) {
  .h2_centered::before,
  .lookH2_centered::before {
    bottom: -16px;
    width: 4px;
    height: 28px;
  }
}

/* h3 */
.h3,
h3:not([class]),
.lookH3 {
  position: relative;
  margin: calc(57px - 0.396em) 0 calc(24px - 0.396em);
  border-bottom: 3px solid #F8DD30;
  padding-bottom: calc(22px - 0.396em);
  font-size: 2.5rem;
  line-height: 1.792;
  letter-spacing: 0.04em;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .h3,
  h3:not([class]),
  .lookH3 {
    margin: calc(47px - 0.25em) 0 calc(20px - 0.25em);
    padding-bottom: calc(21px - 0.25em);
    font-size: 2.1rem;
    line-height: 1.5;
  }
}

.h3::after,
h3:not([class])::after,
.lookH3::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #39BE5D;
}

@media screen and (max-width: 767px) {
  .h3::after,
  h3:not([class])::after,
  .lookH3::after {
    width: 60px;
  }
}

.h3 a,
.h3 .hlink,
h3:not([class]) a,
h3:not([class]) .hlink,
.lookH3 a,
.lookH3 .hlink {
  display: block;
  padding-left: 39px;
  position: absolute;
  width: 20px;
  height: 8px;
  position: relative;
  width: 100%;
  height: auto;
}

.h3 a::before, .h3 a::after,
.h3 .hlink::before,
.h3 .hlink::after,
h3:not([class]) a::before,
h3:not([class]) a::after,
h3:not([class]) .hlink::before,
h3:not([class]) .hlink::after,
.lookH3 a::before,
.lookH3 a::after,
.lookH3 .hlink::before,
.lookH3 .hlink::after {
  content: '';
  position: absolute;
}

.h3 a::before,
.h3 .hlink::before,
h3:not([class]) a::before,
h3:not([class]) .hlink::before,
.lookH3 a::before,
.lookH3 .hlink::before {
  top: calc(50% - 1px);
  left: 0;
  width: 14px;
  height: 2px;
  background-color: #333;
}

.h3 a::after,
.h3 .hlink::after,
h3:not([class]) a::after,
h3:not([class]) .hlink::after,
.lookH3 a::after,
.lookH3 .hlink::after {
  top: calc(50% - 3px);
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #333;
}

.h3 a::before,
.h3 .hlink::before,
h3:not([class]) a::before,
h3:not([class]) .hlink::before,
.lookH3 a::before,
.lookH3 .hlink::before {
  width: 21px;
}

.h3 a::after,
.h3 .hlink::after,
h3:not([class]) a::after,
h3:not([class]) .hlink::after,
.lookH3 a::after,
.lookH3 .hlink::after {
  top: calc(50% - 4px);
  right: auto;
  left: 21px;
  border-width: 4.5px 0 4.5px 8px;
}

.h3 a:hover,
.h3 .hlink:hover,
h3:not([class]) a:hover,
h3:not([class]) .hlink:hover,
.lookH3 a:hover,
.lookH3 .hlink:hover {
  opacity: 0.7;
}

/* h4 */
.h4,
h4:not([class]),
.lookH4 {
  position: relative;
  margin: 27px 0 calc(24px - 0.135em);
  border-left: 4px solid #F8DD30;
  padding-left: 12px;
  font-size: 2.3rem;
  line-height: 1.27826087;
  letter-spacing: 0.04em;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .h4,
  h4:not([class]),
  .lookH4 {
    margin: 24px 0 calc(27px - 0.25em);
    padding-left: 13px;
    font-size: 1.9rem;
    line-height: 1.5;
  }
}

.h4 a,
.h4 .hlink,
h4:not([class]) a,
h4:not([class]) .hlink,
.lookH4 a,
.lookH4 .hlink {
  display: block;
  padding-left: 29px;
  position: absolute;
  width: 20px;
  height: 8px;
  position: relative;
  width: 100%;
  height: auto;
}

.h4 a::before, .h4 a::after,
.h4 .hlink::before,
.h4 .hlink::after,
h4:not([class]) a::before,
h4:not([class]) a::after,
h4:not([class]) .hlink::before,
h4:not([class]) .hlink::after,
.lookH4 a::before,
.lookH4 a::after,
.lookH4 .hlink::before,
.lookH4 .hlink::after {
  content: '';
  position: absolute;
}

.h4 a::before,
.h4 .hlink::before,
h4:not([class]) a::before,
h4:not([class]) .hlink::before,
.lookH4 a::before,
.lookH4 .hlink::before {
  top: calc(50% - 1px);
  left: 0;
  width: 14px;
  height: 2px;
  background-color: #333;
}

.h4 a::after,
.h4 .hlink::after,
h4:not([class]) a::after,
h4:not([class]) .hlink::after,
.lookH4 a::after,
.lookH4 .hlink::after {
  top: calc(50% - 3px);
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #333;
}

.h4 a::before,
.h4 .hlink::before,
h4:not([class]) a::before,
h4:not([class]) .hlink::before,
.lookH4 a::before,
.lookH4 .hlink::before {
  width: 14px;
}

.h4 a::after,
.h4 .hlink::after,
h4:not([class]) a::after,
h4:not([class]) .hlink::after,
.lookH4 a::after,
.lookH4 .hlink::after {
  top: calc(50% - 3px);
  right: auto;
  left: 14px;
  border-width: 3px 0 3px 6px;
}

.h4 a:hover,
.h4 .hlink:hover,
h4:not([class]) a:hover,
h4:not([class]) .hlink:hover,
.lookH4 a:hover,
.lookH4 .hlink:hover {
  opacity: 0.7;
}

/* h5 */
.h5,
h5:not([class]),
.lookH5 {
  position: relative;
  margin: 24px 0 calc(26px - 0.2em);
  font-size: 2.1rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-weight: bold;
  color: #008500;
}

@media screen and (max-width: 767px) {
  .h5,
  h5:not([class]),
  .lookH5 {
    margin: 20px 0 calc(24px - 0.25em);
    font-size: 1.9rem;
    line-height: 1.5;
  }
}

.h5 a,
.h5 .hlink,
h5:not([class]) a,
h5:not([class]) .hlink,
.lookH5 a,
.lookH5 .hlink {
  display: block;
  padding-left: 32px;
  position: absolute;
  width: 20px;
  height: 8px;
  position: relative;
  width: 100%;
  height: auto;
  color: #008500;
}

.h5 a::before, .h5 a::after,
.h5 .hlink::before,
.h5 .hlink::after,
h5:not([class]) a::before,
h5:not([class]) a::after,
h5:not([class]) .hlink::before,
h5:not([class]) .hlink::after,
.lookH5 a::before,
.lookH5 a::after,
.lookH5 .hlink::before,
.lookH5 .hlink::after {
  content: '';
  position: absolute;
}

.h5 a::before,
.h5 .hlink::before,
h5:not([class]) a::before,
h5:not([class]) .hlink::before,
.lookH5 a::before,
.lookH5 .hlink::before {
  top: calc(50% - 1px);
  left: 0;
  width: 14px;
  height: 2px;
  background-color: #333;
}

.h5 a::after,
.h5 .hlink::after,
h5:not([class]) a::after,
h5:not([class]) .hlink::after,
.lookH5 a::after,
.lookH5 .hlink::after {
  top: calc(50% - 3px);
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #333;
}

.h5 a::before,
.h5 .hlink::before,
h5:not([class]) a::before,
h5:not([class]) .hlink::before,
.lookH5 a::before,
.lookH5 .hlink::before {
  width: 14px;
}

.h5 a::after,
.h5 .hlink::after,
h5:not([class]) a::after,
h5:not([class]) .hlink::after,
.lookH5 a::after,
.lookH5 .hlink::after {
  top: calc(50% - 3px);
  right: auto;
  left: 14px;
  border-width: 3px 0 3px 6px;
}

.h5 a:hover,
.h5 .hlink:hover,
h5:not([class]) a:hover,
h5:not([class]) .hlink:hover,
.lookH5 a:hover,
.lookH5 .hlink:hover {
  opacity: 1;
  color: #717171;
}

/* h6 */
.h6,
h6:not([class]),
.lookH6 {
  position: relative;
  margin: calc(55px - 0.16em) 0 calc(24px - 0.16em);
  font-size: 1.9rem;
  line-height: 1.326315789;
  letter-spacing: 0.04em;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .h6,
  h6:not([class]),
  .lookH6 {
    margin: calc(46px - 0.36em) 0 calc(22px - 0.36em);
    font-size: 1.7rem;
    line-height: 1.729411765;
  }
}

.h6 a,
.h6 .hlink,
h6:not([class]) a,
h6:not([class]) .hlink,
.lookH6 a,
.lookH6 .hlink {
  display: block;
  padding-left: 32px;
  position: absolute;
  width: 20px;
  height: 8px;
  position: relative;
  width: 100%;
  height: auto;
}

.h6 a::before, .h6 a::after,
.h6 .hlink::before,
.h6 .hlink::after,
h6:not([class]) a::before,
h6:not([class]) a::after,
h6:not([class]) .hlink::before,
h6:not([class]) .hlink::after,
.lookH6 a::before,
.lookH6 a::after,
.lookH6 .hlink::before,
.lookH6 .hlink::after {
  content: '';
  position: absolute;
}

.h6 a::before,
.h6 .hlink::before,
h6:not([class]) a::before,
h6:not([class]) .hlink::before,
.lookH6 a::before,
.lookH6 .hlink::before {
  top: calc(50% - 1px);
  left: 0;
  width: 14px;
  height: 2px;
  background-color: #333;
}

.h6 a::after,
.h6 .hlink::after,
h6:not([class]) a::after,
h6:not([class]) .hlink::after,
.lookH6 a::after,
.lookH6 .hlink::after {
  top: calc(50% - 3px);
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #333;
}

.h6 a::before,
.h6 .hlink::before,
h6:not([class]) a::before,
h6:not([class]) .hlink::before,
.lookH6 a::before,
.lookH6 .hlink::before {
  width: 14px;
}

.h6 a::after,
.h6 .hlink::after,
h6:not([class]) a::after,
h6:not([class]) .hlink::after,
.lookH6 a::after,
.lookH6 .hlink::after {
  top: calc(50% - 3px);
  right: auto;
  left: 14px;
  border-width: 3px 0 3px 6px;
}

/**
 * 画像リンク
 */
.imgLink01 a {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  transition-property: background-color;
  transition-duration: .3s;
}

.imgLink01 a:hover {
  opacity: 1;
}

.imgLink01 a:hover .textArea {
  background-color: #FCF378;
}

.imgLink01 a:hover .arw {
  right: 8px;
}

.imgLink01 img {
  width: 100%;
  height: auto;
}

.imgLink01 .arw {
  position: absolute;
  width: 20px;
  height: 8px;
  top: calc(50% - 4px);
  right: 12px;
  transition-property: right;
  transition-duration: .3s;
}

.imgLink01 .arw::before, .imgLink01 .arw::after {
  content: '';
  position: absolute;
}

.imgLink01 .arw::before {
  top: calc(50% - 1px);
  left: 0;
  width: 14px;
  height: 2px;
  background-color: #333;
}

.imgLink01 .arw::after {
  top: calc(50% - 3px);
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #333;
}

.imgLink01 .textArea {
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 33px 0 0 0;
  padding: 16px 52px 12px 24px;
  font-size: 1.6rem;
  border-radius: 30px 0 0 0;
  padding: 12px 52px 8px 24px;
  font-weight: bold;
  background-color: #fff;
  transition-property: background-color;
  transition-duration: .3s;
}

.imgLink01 .m-newLabel {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 40px;
  padding: 10px;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.3125;
  font-weight: bold;
  color: #fff;
  background-color: #E5007C;
}

@media screen and (max-width: 767px) {
  .imgLink01 .m-newLabel {
    left: 15px;
    font-size: 1.5rem;
    line-height: 1.4;
    padding: 10px 14px;
  }
}

.imgLink01 .m-newLabel::before {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 0;
  padding-top: 15.476190476%;
  width: 100%;
  height: 0;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-image: url(/zoo/assets/images/common/decoration_ribbon_01.png);
  transform: translateY(100%);
}

.imgLink01 .m-newLabel .new {
  position: relative;
  display: block;
  margin-bottom: 2px;
  padding: 0 13px;
}

@media screen and (max-width: 767px) {
  .imgLink01 .m-newLabel .new {
    font-size: 1.4rem;
  }
}

.imgLink01 .m-newLabel .new::before, .imgLink01 .m-newLabel .new::after {
  content: '';
  position: absolute;
  top: 6px;
  width: 2px;
  height: 12px;
  background-color: #fff;
}

.imgLink01 .m-newLabel .new::before {
  left: 0;
  transform-origin: left top;
  transform: rotate(-35deg);
}

.imgLink01 .m-newLabel .new::after {
  right: 0;
  transform-origin: right top;
  transform: rotate(35deg);
}

/**
 * 複数カラム
 */
.columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 38px;
  padding: 0;
  width: 100%;
  /* 2カラム */
  /* 3カラム */
  /* 4カラム */
}

@media screen and (max-width: 767px) {
  .columns {
    display: block;
    margin-top: 0;
  }
}

.columns.column-2 .column-item {
  margin: 28px 0 0 0;
  width: calc((100% - 30px) / 2);
}

@media screen and (max-width: 767px) {
  .columns.column-2 .column-item {
    margin-top: 20px;
    width: 100%;
  }
}

.columns.column-2 .column-item:nth-child(-n+2) {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .columns.column-2 .column-item:nth-child(-n+2) {
    margin-top: 20px;
  }
}

.columns.column-3 .column-item {
  margin: 28px 0 0 0;
  width: calc((100% - 28px * 2) / 3);
}

@media screen and (max-width: 767px) {
  .columns.column-3 .column-item {
    margin-top: 20px;
    width: 100%;
  }
}

.columns.column-3 .column-item:nth-child(-n+3) {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .columns.column-3 .column-item:nth-child(-n+3) {
    margin-top: 20px;
  }
}

.columns.column-3::after {
  content: "";
  display: block;
  width: calc((100% - 28px * 2) / 3);
}

.columns.column-4 .column-item {
  margin: 24px 0 0 0;
  width: calc((100% - 20px * 3) / 4);
}

@media screen and (max-width: 767px) {
  .columns.column-4 .column-item {
    margin-top: 20px;
    width: 100%;
  }
}

.columns.column-4 .column-item:nth-child(-n+4) {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .columns.column-4 .column-item:nth-child(-n+4) {
    margin-top: 20px;
  }
}

.columns.column-4::before {
  content: "";
  display: block;
  width: calc((100% - 20px * 3) / 4);
  order: 1;
}

.columns.column-4::after {
  content: "";
  display: block;
  width: calc((100% - 20px * 3) / 4);
}

/**
 * イベント情報
 */
.eventCard {
  width: 100%;
}

.eventCard a {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  margin-bottom: 8px;
  background-color: #fff;
  transition-property: top, left;
  transition-duration: .3s;
}

.eventCard a::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 8px;
  left: 8px;
  width: 100%;
  height: 100%;
  transition-property: top, left;
  transition-duration: .3s;
  background-color: pink;
}

.eventCard a:hover {
  opacity: 1;
  top: 8px;
  left: 8px;
}

.eventCard a:hover::before {
  top: 0;
  left: 0;
}

.eventCard-img img {
  width: 100%;
  height: auto;
}

.eventCard-body {
  position: relative;
  padding: 18px 18px 21px;
}

@media screen and (max-width: 767px) {
  .eventCard-body {
    padding: 20px;
  }
}

.eventCard-icon {
  position: absolute;
  top: -25px;
  left: calc(50% - 25px);
  border-radius: 25px;
  width: 50px;
  height: 50px;
  background-color: #fff;
}

.eventCard-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.eventCard time {
  font-size: 1.4rem;
  color: #676767;
}

.eventCard-title {
  margin-top: 2px;
  font-size: 1.7rem;
  line-height: 1.6;
  font-weight: bold;
}

.eventCard-period {
  position: relative;
  margin-top: 12px;
  border-top: 1px dashed #C8C8C8;
  padding-top: 10px;
  font-size: 1.5rem;
  letter-spacing: 0;
}

.eventCard-period::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 4em;
  height: 1px;
  background-color: #333;
}

.eventCard-animal a::before {
  background-color: #FFB350;
}

.eventCard-animal .eventCard-icon img {
  width: 24px;
  height: auto;
}

.eventCard-botanical a::before {
  background-color: #39BE5D;
}

.eventCard-botanical .eventCard-icon img {
  width: 20px;
  height: auto;
}

/**
 * イベント情報リスト
 */
.eventListBox {
  margin-top: 30px;
}

.eventListBox > .columns {
  margin-top: 0;
}

.eventListBox .column-item {
  display: flex;
}

.eventListBox .column-item .eventCard {
  display: flex;
}

.eventListBox .column-4 .column-item {
  width: calc((100% - 36px * 3) / 4);
}

@media screen and (max-width: 767px) {
  .eventListBox .column-4 .column-item {
    width: 100%;
  }
}

/**
 * スライダーのページャー
 */
.slidePagenation {
  display: flex;
  align-content: center;
  align-items: center;
}

.slidePagenation .swiper-pagination {
  position: static;
  display: flex;
}

.slidePagenation .swiper-pagination-bullet {
  opacity: .5;
  margin: 0 6px;
  border-radius: 2px;
  width: 22px;
  height: 4px;
  background-color: #333333;
  transition-property: background, height, border-radius;
  transition-duration: .3s;
}

.slidePagenation .swiper-pagination-bullet:focus {
  outline: .5px dotted #666;
  outline-offset: 2px;
}

.slidePagenation .swiper-pagination-bullet-active {
  opacity: 1;
  height: 6px;
  border-radius: 3px;
}

.slidePagenation-playButton {
  position: relative;
  z-index: 10;
  display: block;
  margin-left: 18px;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 0;
}

.slidePagenation-playButton::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 0;
  transition-property: opacity;
  transition-duration: .3s;
}

@media screen and (min-width: 768px) {
  .slidePagenation-playButton:hover::after {
    opacity: 1;
  }
}

.slidePagenation-playButton-playing {
  background-image: url(/zoo/assets/images/common/button_pause.png);
}

.slidePagenation-playButton-playing:after {
  background-image: url(/zoo/assets/images/common/button_pause_on.png);
}

.slidePagenation-playButton-paused {
  background-image: url(/zoo/assets/images/common/button_play.png);
}

.slidePagenation-playButton-paused::after {
  background-image: url(/zoo/assets/images/common/button_play_on.png);
}

/**
 * スライダーのナビ
 */
.slideNav .swiper-button-prev,
.slideNav .swiper-button-next {
  border-radius: 28px;
  border: 2px solid #333;
  width: 56px;
  height: 56px;
  background-color: #FCF378;
  transition-property: background-color;
  transition-duration: .3s;
}

@media screen and (max-width: 767px) {
  .slideNav .swiper-button-prev,
  .slideNav .swiper-button-next {
    border-radius: 18px;
    width: 36px;
    height: 36px;
  }
}

.slideNav .swiper-button-prev:hover,
.slideNav .swiper-button-next:hover {
  background-color: #FFCB3B;
}

.slideNav .swiper-button-prev::after,
.slideNav .swiper-button-next::after {
  content: none;
}

.slideNav .swiper-button-prev .arw,
.slideNav .swiper-button-next .arw {
  position: absolute;
  width: 20px;
  height: 8px;
  width: 29px;
  height: 10px;
  top: calc(50% - 5px);
  left: calc(50% - 14px);
}

.slideNav .swiper-button-prev .arw::before, .slideNav .swiper-button-prev .arw::after,
.slideNav .swiper-button-next .arw::before,
.slideNav .swiper-button-next .arw::after {
  content: '';
  position: absolute;
}

.slideNav .swiper-button-prev .arw::before,
.slideNav .swiper-button-next .arw::before {
  top: calc(50% - 1px);
  left: 0;
  width: 14px;
  height: 2px;
  background-color: #333;
}

.slideNav .swiper-button-prev .arw::after,
.slideNav .swiper-button-next .arw::after {
  top: calc(50% - 3px);
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #333;
}

.slideNav .swiper-button-prev .arw::before,
.slideNav .swiper-button-next .arw::before {
  width: 20px;
}

.slideNav .swiper-button-prev .arw::after,
.slideNav .swiper-button-next .arw::after {
  top: calc(50% - 5px);
  border-width: 5px 0 5px 9px;
}

@media screen and (max-width: 767px) {
  .slideNav .swiper-button-prev .arw,
  .slideNav .swiper-button-next .arw {
    width: 19px;
    height: 8px;
    top: calc(50% - 4px);
    left: calc(50% - 9px);
  }
  .slideNav .swiper-button-prev .arw::before,
  .slideNav .swiper-button-next .arw::before {
    width: 14px;
  }
  .slideNav .swiper-button-prev .arw::after,
  .slideNav .swiper-button-next .arw::after {
    top: calc(50% - 4px);
    border-width: 4px 0 4px 6px;
  }
}

.slideNav .swiper-button-prev {
  left: 2.857142857%;
}

.slideNav .swiper-button-prev .arw {
  transform: rotate(180deg);
}

.slideNav .swiper-button-next {
  right: 2.857142857%;
}

/**
 * ニュース一覧
 */
.news-list-item {
  border-top: 1px dashed #C8C8C8;
  padding: 20px 0 13px;
}

.news-list-item:last-of-type {
  border-bottom: 1px dashed #C8C8C8;
}

.news-list-item-animal .news-list-tag {
  background-color: #FFD59E;
}

.news-list-item-botanical .news-list-tag {
  background-color: #B8EFB2;
}

.news-list-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  margin-top: -7px;
  padding-left: calc(7.6em + 10px);
  min-height: 28px;
}

@media screen and (max-width: 767px) {
  .news-list-info {
    padding-left: calc(7.3em + 10px);
  }
}

.news-list time {
  position: absolute;
  top: calc(50% + 4px);
  left: 0;
  font-size: 1.4rem;
  color: #676767;
  font-weight: 500;
  transform: translateY(-50%);
}

.news-list-tag {
  margin: 7px 7px 0 0;
  border-radius: 20px;
  padding: 2px 13px;
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .news-list-tag {
    font-size: 1.4rem;
    padding: 2px 6px;
  }
}

.news-list a {
  display: inline-block;
  margin-top: 7px;
  text-decoration: underline;
}

.news-list a:hover {
  text-decoration: none;
  opacity: 0.7;
}

/**
 * タブ切り替えボタン
 */
.tabBox {
  display: inline-block;
  margin-bottom: 6px;
  border-radius: 20px 20px 0 0;
  border: 1px solid #333;
  border-bottom: none;
  padding: 6px 6px 0;
}

@media screen and (max-width: 767px) {
  .tabBox {
    display: block;
  }
}

.tabBox > [role="tablist"] {
  display: flex;
}

.tabBox-item {
  position: relative;
  flex-grow: 1;
}

.tabBox-item + .tabBox-item {
  margin-left: 13px;
}

.tabBox-item + .tabBox-item::before {
  content: '';
  position: absolute;
  top: 10px;
  left: -6px;
  width: 1px;
  height: calc(100% - 20px);
  border-left: 1px dotted #C8C8C8;
}

.tabBox-item button {
  transition-property: background-color;
  transition-duration: .3s;
}

.tabBox-item button[aria-selected="true"] {
  background-color: #FCF378;
}

.tabBox-item:hover button {
  background-color: #FCF378;
}

.tabBox button {
  display: block;
  border-radius: 15px 15px 0 0;
  padding: 3px 10px;
  width: 100%;
  height: 100%;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .tabBox button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 8px 3px;
    min-height: 44px;
  }
}

/**
 * ページトップボタン
 */
.pageTop {
  position: fixed;
  z-index: 10;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
}

@media screen and (max-width: 767px) {
  .pageTop {
    bottom: 20px;
    right: 20px;
  }
}

.pageTop[aria-hidden="true"] a {
  opacity: 0;
}

.pageTop.onFooter {
  position: absolute;
  top: -30px;
  right: 40px;
}

@media screen and (max-width: 767px) {
  .pageTop.onFooter {
    right: 20px;
  }
}

.pageTop a {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: 20;
  display: block;
  border-radius: 30px;
  border: 2px solid #333;
  width: 60px;
  height: 60px;
  background-color: #FCF378;
  transition-property: background, opacity;
  transition-duration: .3s;
}

@media screen and (max-width: 767px) {
  .pageTop a {
    border-radius: 25px;
    width: 50px;
    height: 50px;
  }
}

@media screen and (min-width: 768px) {
  .pageTop a:hover, .pageTop a:focus {
    opacity: 1;
    background-color: #FFCB3B;
  }
}

.pageTop .arw {
  position: absolute;
  width: 20px;
  height: 8px;
  width: 29px;
  height: 10px;
  top: calc(50% - 5px);
  left: calc(50% - 14px);
  transform: rotate(-90deg);
}

.pageTop .arw::before, .pageTop .arw::after {
  content: '';
  position: absolute;
}

.pageTop .arw::before {
  top: calc(50% - 1px);
  left: 0;
  width: 14px;
  height: 2px;
  background-color: #333;
}

.pageTop .arw::after {
  top: calc(50% - 3px);
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #333;
}

.pageTop .arw::before {
  width: 21px;
}

.pageTop .arw::after {
  top: calc(50% - 4px);
  border-width: 4px 0 4px 8px;
}

@media screen and (max-width: 767px) {
  .pageTop .arw {
    width: 20px;
    height: 8px;
    top: calc(50% - 4px);
    left: calc(50% - 10px);
  }
  .pageTop .arw::before {
    width: 14px;
  }
  .pageTop .arw::after {
    top: calc(50% - 3px);
    border-width: 3px 0 3px 6px;
  }
}

/**
 * イベント凡例
 */
.legendArea {
  margin-top: 40px;
}

.legendArea ul {
  display: flex;
  margin-top: 0;
  padding-left: 0;
}

.legendArea ul li {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  text-indent: 0;
}

.legendArea ul li::before {
  content: none;
}

.legendArea ul li .icon {
  margin-right: 14px;
}

.legendArea ul li + li {
  margin-top: 0;
  margin-left: 30px;
}

@media screen and (max-width: 767px) {
  .legendArea ul li + li {
    margin-left: 15px;
  }
}

.legendArea ul li p {
  margin-top: 0;
}

/**
 * 下層ページh1
 */
#signboard {
  background-size: 28px 28px;
  background-position: 0 0;
  background-image: url(/zoo/assets/images/common/bg_dot_01.png);
  padding: 42px 0;
}

@media screen and (max-width: 767px) {
  #signboard {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 146px;
  }
}

.signboard-titleBox {
  text-align: center;
}

.signboard-title {
  display: inline-block;
  padding: calc(20px - 0.0972em) 33px calc(18px - 0.0972em);
  font-size: 3.6rem;
  letter-spacing: 0.05em;
  line-height: 1.1944;
  font-weight: bold;
  background-color: #FCF378;
}

@media screen and (max-width: 767px) {
  .signboard-title {
    padding: calc(14px - 0.25em) 20px calc(13px - 0.25em);
    font-size: 2.7rem;
    line-height: 1.555555556;
  }
}

/**
 * ぱんくず
 */
.breadcrum {
  margin: 0;
  width: 100%;
  background: #fff;
}

.breadcrum-inner {
  list-style: none;
  margin: 0 auto;
  padding: 14px 0 47px;
}

@media screen and (max-width: 767px) {
  .breadcrum-inner {
    padding-bottom: calc(55px - 1em);
  }
}

.breadcrum-list {
  display: inline-block;
  margin: 0 8px 0 0;
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .breadcrum-list {
    font-size: 1.4rem;
  }
}

.breadcrum-list::before {
  content: "\e911";
  font-family: 'ichikawa-icon' !important;
  font-size: 1rem;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
  margin: 0 8px 0 0;
  speak: never;
  text-transform: none;
}

.breadcrum-list:first-child::before {
  content: '';
  margin: 0;
}

.breadcrum-list a {
  text-decoration: underline;
}

.breadcrum-list a:hover {
  text-decoration: none;
}

/**
 * 画像とテキスト
 */
.img-floatRight::after,
.img-floatLeft::after {
  content: "";
  clear: both;
  display: table;
}

.img-floatRight > img,
.img-floatRight > figure {
  float: right;
  margin: 0 0 20px 30px;
}

@media screen and (max-width: 767px) {
  .img-floatRight > img,
  .img-floatRight > figure {
    margin: 1.4em 0 calc(20px - .3em);
    float: none;
    width: 100%;
  }
}

.img-floatRight ul:not([class]) {
  padding-left: 0;
}

@media screen and (max-width: 767px) {
  .img-floatRight ul:not([class]) {
    padding-left: 17px;
  }
}

.img-floatRight ul:not([class]) li {
  text-indent: 0;
}

@media screen and (max-width: 767px) {
  .img-floatRight ul:not([class]) li {
    text-indent: -17px;
  }
}

.img-floatRight ul:not([class]) li::before {
  margin-right: 9px;
}

@media screen and (max-width: 767px) {
  .img-floatRight ul:not([class]) li::before {
    margin-right: 12px;
  }
}

.img-floatRight ul:not([class]) li ul {
  padding-left: 0;
}

@media screen and (max-width: 767px) {
  .img-floatRight ul:not([class]) li ul {
    padding-left: 20px;
  }
}

.img-floatRight ol:not([class]) {
  padding-left: 0;
}

.img-floatRight ol:not([class]) li {
  text-indent: 0;
}

.img-floatRight ol:not([class]) li ol {
  padding-left: 0;
}

@media screen and (max-width: 767px) {
  .img-floatRight ol:not([class]) li ol {
    padding-left: 20px;
  }
}

.img-floatLeft > img,
.img-floatLeft > figure {
  float: left;
  margin: 0 30px 20px 0;
}

@media screen and (max-width: 767px) {
  .img-floatLeft > img,
  .img-floatLeft > figure {
    margin: 1.4em 0 calc(20px - .3em);
    float: none;
    width: 100%;
  }
}

.img-floatLeft ul:not([class]) li::before {
  margin-right: 9px;
}

@media screen and (max-width: 767px) {
  .img-floatLeft ul:not([class]) li::before {
    margin-right: 12px;
  }
}

/**
 * キャプションつき画像
 */
.img-caption {
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .img-caption {
    width: 100% !important;
  }
  .img-caption img {
    width: 100%;
  }
}

figcaption {
  margin-top: calc(8px - .15em);
  width: 100%;
  color: #666;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-align: center;
  display: none;
}

@media screen and (max-width: 767px) {
  figcaption {
    margin-top: calc(14px - .15em);
  }
}

/**
 * テキストリンク
 */
.text-link {
  position: relative;
  margin-left: 31px;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .text-link {
    display: block;
  }
}

.text-link:hover {
  text-decoration: none;
  opacity: 0.7;
}

.text-link::before, .text-link::after {
  content: '';
  position: absolute;
}

.text-link::before {
  top: calc(50% - 1px);
  left: -31px;
  width: 14px;
  height: 2px;
  background-color: #333;
}

@media screen and (max-width: 767px) {
  .text-link::before {
    top: calc(0.9em - 1px);
  }
}

.text-link::after {
  top: calc(50% - 3px);
  left: calc(-31px + 14px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #333;
}

@media screen and (max-width: 767px) {
  .text-link::after {
    top: calc(0.9em - 3px);
  }
}

/**
 * 背景のBOX
 */
.box {
  margin-top: 1.6em;
  padding: calc(22px - .3em) 24px;
  line-height: 1.6;
  border: 1px dashed #FB9017;
  background-color: #FEFAC9;
}

@media screen and (max-width: 767px) {
  .box {
    padding: calc(18px - .3em) 20px;
  }
}

.box > *:first-child {
  margin-top: 0;
}

.box.boxSmall {
  margin-right: auto;
  margin-left: auto;
  width: 51.17647%;
}

@media screen and (max-width: 767px) {
  .box.boxSmall {
    width: 100%;
  }
}

/**
 * このページに掲載されている情報の問い合わせ
 */
.contactTitle {
  margin-bottom: calc(32px - .16em);
  position: relative;
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.336363636;
  color: #008500;
}

@media screen and (max-width: 767px) {
  .contactTitle {
    margin-bottom: calc(28px - .315em);
    text-align: left;
    font-size: 1.8rem;
    line-height: 1.633333333;
  }
}

.contactTitle::before {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  border-top: 2px dotted #008500;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .contactTitle::before {
    content: none;
  }
}

.contactTitle-text {
  position: relative;
  display: inline-block;
  padding-right: 17px;
  padding-left: 17px;
  background-color: #FEFAC9;
}

@media screen and (max-width: 767px) {
  .contactTitle-text {
    display: block;
    padding: 0;
    background-color: transparent;
  }
}

.boxGray {
  margin-top: 1.6em;
  padding: calc(40px - .3em) 36px;
}

@media screen and (max-width: 767px) {
  .boxGray {
    padding: calc(25px - .4em) 20px calc(33px - .4em);
  }
}

.boxGray .text-medium {
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .boxGray .text-medium {
    font-size: 1.6rem;
  }
}

.boxGray p {
  margin-top: calc(17px - .3em);
}

@media screen and (max-width: 767px) {
  .boxGray p {
    margin-top: calc(13px - .4em);
  }
}

.boxGray dl {
  margin-top: 17px;
}

@media screen and (max-width: 767px) {
  .boxGray dl {
    margin-top: calc(26px - .4em);
  }
}

@media screen and (max-width: 767px) {
  .boxGray dl dt {
    width: 100%;
  }
}

.boxGray .link-linkList {
  margin-top: calc(29px - .3em);
}

/**
 * アンカーリンク
 */
.ankerLink-listBox {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  margin-top: 8px;
  padding-bottom: 2px;
}

@media screen and (max-width: 767px) {
  .ankerLink-listBox {
    flex-wrap: wrap;
  }
}

.ankerLink-listBox::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #949494, #949494 33%, rgba(0, 0, 0, 0) 33%, rgba(0, 0, 0, 0) 100%) 0% 0%;
  background-size: 6px 2px;
}

.ankerLink-listBox-list {
  display: flex;
  margin-bottom: calc(25px - .3em);
  margin-right: 26px;
  border-right: 1px dotted #707070;
  padding-right: 26px;
}

@media screen and (max-width: 767px) {
  .ankerLink-listBox-list {
    margin-right: 0;
    width: 50%;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .ankerLink-listBox-list:nth-of-type(odd) {
    padding-right: 15px;
    border-right: 1px dotted #707070;
  }
}

@media screen and (max-width: 767px) {
  .ankerLink-listBox-list:nth-of-type(even) {
    margin-right: 0;
    border-right: none;
    padding-left: 15px;
    padding-right: 0;
  }
}

.ankerLink-listBox-link {
  position: relative;
  margin-left: 23px;
  text-decoration: underline;
}

.ankerLink-listBox-link:hover {
  text-decoration: none;
}

.ankerLink-listBox-link::before, .ankerLink-listBox-link::after {
  content: '';
  position: absolute;
}

.ankerLink-listBox-link::before {
  top: calc(50% - 10px);
  left: calc(-23px + 2px);
  width: 2px;
  height: 14px;
  background-color: #333;
}

@media screen and (max-width: 767px) {
  .ankerLink-listBox-link::before {
    top: 5px;
  }
}

.ankerLink-listBox-link::after {
  top: calc(50% + 4px);
  left: -23px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 3px 0 3px;
  border-color: #333 transparent transparent transparent;
}

@media screen and (max-width: 767px) {
  .ankerLink-listBox-link::after {
    top: 19px;
  }
}

.ankerLink-w100 .ankerLink-listBox {
  display: block;
}

.ankerLink-w100 .ankerLink-listBox-list {
  border-right: none;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .ankerLink-w100 .ankerLink-listBox-list:nth-of-type(even) {
    padding-left: 0;
  }
}

/**
 * サムネイル付きリンク
 */
.thumbLink-listBox-list {
  display: flex;
  height: 100%;
  border: 2px solid #333;
}

.thumbLink-listBox-link {
  background-color: #FCF378;
  width: 100%;
}

.thumbLink-listBox-link:hover, .thumbLink-listBox-link:focus {
  opacity: 1;
  background-color: #FFCB3B;
}

.thumbLink-listBox-link:focus {
  outline-offset: 5px;
}

.thumbLink-listBox-image {
  background-color: #fff;
}

.thumbLink-listBox-image img {
  width: 100%;
  height: auto;
}

.thumbLink-listBox-body {
  position: relative;
  padding: calc(17px - 0.3em) 46px calc(17px - 0.3em) 16px;
}

.thumbLink-listBox-title {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .thumbLink-listBox-title {
    font-size: 1.5rem;
    line-height: 1.7067;
  }
}

.thumbLink-listBox-supplement {
  font-size: 1.5rem;
}

.thumbLink-listBox .arw {
  position: absolute;
  width: 20px;
  height: 8px;
  top: 22px;
  right: 16px;
}

.thumbLink-listBox .arw::before, .thumbLink-listBox .arw::after {
  content: '';
  position: absolute;
}

.thumbLink-listBox .arw::before {
  top: calc(50% - 1px);
  left: 0;
  width: 14px;
  height: 2px;
  background-color: #333;
}

.thumbLink-listBox .arw::after {
  top: calc(50% - 3px);
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #333;
}

/**
 * 本文付きリンク
 */
.cardLink-listBox .column-item {
  display: flex;
}

.cardLink-listBox-list {
  position: relative;
  display: flex;
  border: 2px solid #333;
  width: 100%;
  background-color: #FCF378;
}

.cardLink-listBox-link {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.cardLink-listBox-link:hover {
  opacity: 1;
}

.cardLink-listBox-link:hover .cardLink-listBox-body {
  background-color: #FFCB3B;
}

.cardLink-listBox-title {
  flex-grow: 0;
  padding: calc(13px - .1em) 15px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .cardLink-listBox-title {
    padding: calc(18px - .1em) 15px;
  }
}

.cardLink-listBox-title time {
  position: relative;
  padding-left: 18px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #5B5B5B;
}

.cardLink-listBox-title time::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 1px;
  background-color: #5B5B5B;
}

.cardLink-listBox-title > p {
  margin-top: 0;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .cardLink-listBox-title > p {
    font-size: 1.6rem;
  }
}

.cardLink-listBox-body {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(22px - .3em) 15px calc(18px - .3em);
  transition-property: background;
  transition-duration: .3s;
}

@media screen and (max-width: 767px) {
  .cardLink-listBox-body {
    padding: calc(14px - .3em) 17px;
  }
}

.cardLink-listBox-text {
  padding-bottom: calc(16px - .3em);
  line-height: 1.6;
}

.cardLink-listBox-more {
  position: relative;
  padding-right: 28px;
  text-align: right;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.7067;
}

.cardLink-listBox-more .arw {
  position: absolute;
  width: 20px;
  height: 8px;
  top: calc(50% - 4px);
  right: 0;
}

.cardLink-listBox-more .arw::before, .cardLink-listBox-more .arw::after {
  content: '';
  position: absolute;
}

.cardLink-listBox-more .arw::before {
  top: calc(50% - 1px);
  left: 0;
  width: 14px;
  height: 2px;
  background-color: #333;
}

.cardLink-listBox-more .arw::after {
  top: calc(50% - 3px);
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #333;
}

/**
 * Component
 */
.container {
  box-sizing: content-box;
  margin: auto;
  max-width: 1120px;
  padding: 0 30px;
}

@media screen and (max-width: 767px) {
  .container {
    width: auto;
    padding: 0 5%;
  }
}

/**
 * カレンダー
 */
.calenderArea-tabWrapper {
  width: 100%;
}

.calenderArea-contWrapper[aria-hidden="true"] {
  display: none;
}

.calenderArea-tile {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.calenderArea-tile > * {
  margin: 24px 0 0 0;
  width: calc((100% - 20px * 3) / 4);
}

@media screen and (max-width: 767px) {
  .calenderArea-tile > * {
    margin-top: 20px;
    width: 100%;
  }
}

.calenderArea-tile > *:nth-child(-n+4) {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .calenderArea-tile > *:nth-child(-n+4) {
    margin-top: 20px;
  }
}

.calenderArea-tile::before {
  content: "";
  display: block;
  width: calc((100% - 20px * 3) / 4);
  order: 1;
}

.calenderArea-tile::after {
  content: "";
  display: block;
  width: calc((100% - 20px * 3) / 4);
}

.calender-infoBlock {
  padding: 8px;
  text-align: center;
  background-color: #FCF378;
}

.calender-infoBlock time {
  font-size: 1.6rem;
  font-weight: 500;
}

.calender-todayState {
  font-size: 1.8rem;
  font-weight: bold;
}

.calender-todayState em {
  font-size: 2.4rem;
}

@media screen and (max-width: 767px) {
  .calender-todayState {
    margin-top: -4px;
    font-size: 1.6rem;
  }
  .calender-todayState em {
    font-size: 2.2rem;
  }
}

.calender-toggleContWrapper[aria-hidden="true"] {
  display: none;
}

.calender-navBlock {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  min-height: 35px;
}

.calender-prev, .calender-next {
  width: 20%;
}

.calender button {
  position: relative;
  font-size: 1.5rem;
}

.calender button:hover, .calender button:focus {
  opacity: 0.7;
}

.calender button.calender-prev {
  padding-left: 1em;
}

.calender button.calender-prev:before {
  content: '';
  position: absolute;
  top: calc(50% - 2px);
  left: 2px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #333;
  border-left: 2px solid #333;
  transform: rotate(-45deg);
}

.calender-thisMonth {
  font-size: 1.7rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .calender-thisMonth {
    font-size: 1.8rem;
  }
}

.calender button.calender-next {
  padding-right: 1em;
}

.calender button.calender-next::after {
  content: '';
  position: absolute;
  top: calc(50% - 3px);
  right: 2px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
}

.calender-calenderBlock {
  border-top: 1px dashed #C8C8C8;
}

.calender-calenderBlock table {
  margin-top: 0;
  border: none;
  width: 100%;
  table-layout: fixed;
}

.calender-calenderBlock table th, .calender-calenderBlock table td {
  border: 2px solid #fff;
  padding: 3px 2px;
  text-align: center;
  vertical-align: middle;
  font-size: 1.3rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .calender-calenderBlock table th, .calender-calenderBlock table td {
    font-size: 1.4rem;
    padding: 6px 2px;
  }
}

.calender-calenderBlock table th.flg_1, .calender-calenderBlock table td.flg_1 {
  background-color: #FFD1DC;
}

.calender-calenderBlock table th.is-sun, .calender-calenderBlock table td.is-sun {
  color: #D22C2C;
}

.calender-calenderBlock table th.is-sat, .calender-calenderBlock table td.is-sat {
  color: #1D6CBE;
}

.calender-calenderBlock table th.is-hol, .calender-calenderBlock table td.is-hol {
  color: #D22C2C;
}

.calender-calenderBlock table th.is-today, .calender-calenderBlock table td.is-today {
  outline: 2px solid #363636;
  outline-offset: -4px;
}

.calender-calenderBlock table th {
  background-color: #fff;
}

.calender-calenderBlock table td {
  background-color: #F3F3E1;
}

.calender-legendBlock {
  margin-top: 10px;
  font-size: 1.5rem;
}

.calender-legendBlock > p {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .calender-legendBlock > p {
    margin-top: 5px;
  }
}

.calender-legendList {
  display: flex;
}

.calender-legendItem {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.calender-legendItem:last-child {
  margin-right: 0;
}

.calender-legendItem .color {
  display: block;
  margin-right: 9px;
  width: 20px;
  height: 14px;
}

.calender-legendItem .color.flg_1 {
  background-color: #FFD1DC;
}

.calender-legendItem .color.is-today {
  outline: 2px solid #363636;
  outline-offset: -2px;
}

/**
 * ローカルナビ
 */
.local_nav {
  overflow: hidden;
  border: 2px solid #333;
  border-radius: 20px;
  background-color: #FCF378;
}

.local_nav + .local_nav {
  margin-top: 20px;
}

.local_nav-title {
  border-bottom: 1px dotted #5E5E5E;
  padding: calc(21px - 0.1em) 20px calc(15px - 0.1em);
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.22;
}

.local_nav ul {
  margin-top: 0;
  padding-left: 0;
}

.local_nav ul > li {
  position: relative;
  padding: calc(17px - 0.09em) 40px calc(15px - 0.09em) 20px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.1875;
  text-indent: 0;
  background-color: #FEFAC9;
}

@media screen and (max-width: 767px) {
  .local_nav ul > li {
    font-size: 1.5rem;
    line-height: 1.2;
  }
}

.local_nav ul > li[aria-current] a {
  opacity: 1;
  color: #008500;
}

.local_nav ul > li[aria-current] a .arw {
  right: 12px;
}

.local_nav ul > li[aria-current] a .arw::before {
  background-color: #008500;
}

.local_nav ul > li[aria-current] a .arw::after {
  border-color: transparent transparent transparent #008500;
}

.local_nav ul > li::before {
  content: none;
}

.local_nav ul > li + li {
  margin-top: 0;
  border-top: 1px dotted #CEC65F;
}

.local_nav ul > li a {
  display: block;
  transition-property: color;
  transition-duration: .3s;
  text-decoration: none;
}

.local_nav ul > li a:hover {
  opacity: 1;
  color: #008500;
}

.local_nav ul > li a:hover .arw {
  right: 12px;
}

.local_nav ul > li a:hover .arw::before {
  background-color: #008500;
}

.local_nav ul > li a:hover .arw::after {
  border-color: transparent transparent transparent #008500;
}

.local_nav ul > li .arw {
  position: absolute;
  width: 20px;
  height: 8px;
  top: calc(50% - 4px);
  right: 20px;
  pointer-events: none;
  transition-property: right;
  transition-duration: .3s;
}

.local_nav ul > li .arw::before, .local_nav ul > li .arw::after {
  content: '';
  position: absolute;
}

.local_nav ul > li .arw::before {
  top: calc(50% - 1px);
  left: 0;
  width: 14px;
  height: 2px;
  background-color: #333;
}

.local_nav ul > li .arw::after {
  top: calc(50% - 3px);
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #333;
}

.local_nav ul > li .arw::before, .local_nav ul > li .arw::after {
  transition-property: background-color, border-color;
  transition-duration: .3s;
}

/**
 * Project
 */
/**
 * Other
 */
/**
 * Utility
 */
@media screen and (max-width: 767px) {
  .pcOnly {
    display: none !important;
  }
}

.gen-disp_sp, .gen-disp_sp_inline {
  display: none;
}

@media screen and (max-width: 767px) {
  .gen-disp_pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .spOnly {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .gen-disp_sp {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .gen-disp_sp_inline {
    display: inline;
  }
}

@media screen and (min-width: 768px) {
  body:not(.tab) .spAndTbOnly {
    display: none !important;
  }
}

.disp-non {
  display: none !important;
}

.gen-disp_non {
  display: none !important;
}

.icons {
  font-family: 'ichikawa-icon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
  speak: never;
  text-transform: none;
  text-decoration: none !important;
}

.icons::before {
  display: inline-block;
  text-decoration: none;
}

/**
 * 開発用
 */
.debug {
  border: 1px dotted red;
}

.debugWrapper > * {
  border: 1px dotted red;
}

/**
 * keyframes
 */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/**
 * Swiper 5.4.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 15, 2020
 */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}

:root {
  -swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

:root {
  -swiper-navigation-size: 44px;
  /*
  -swiper-navigation-color: var(-swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(-swiper-navigation-size) / 44 * 27);
  height: var(-swiper-navigation-size);
  margin-top: calc(-1 * var(-swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(-swiper-navigation-color, var(-swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(-swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: 'next';
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  -swiper-navigation-color: #ffffff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  -swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  -swiper-pagination-color: var(-swiper-theme-color);
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(-swiper-pagination-color, var(-swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(-swiper-pagination-color, var(-swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  -swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  -swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  -swiper-preloader-color: var(-swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(-swiper-preloader-color, var(-swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  -swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  -swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/**
 * IE対応
 */
@media all and (-ms-high-contrast: none) {
  .top_page .infoWrapper .calenderArea .calenderArea-contWrapper {
    margin-top: -9px;
  }
  .top_page .infoWrapper .newsArea .newsArea-newsWrapper {
    margin-top: -9px;
  }
  .tabBox button {
    padding: 8px 10px 1px;
  }
}

@media all and (-ms-high-contrast: none) and (max-width: 767px) {
  .top_page .infoWrapper .calenderArea .calenderArea-contWrapper {
    margin-top: 0;
  }
  .top_page .infoWrapper .newsArea .newsArea-newsWrapper {
    margin-top: 0;
  }
}

/**
 * 印刷用
 */
@media print {
  body {
    -webkit-print-color-adjust: exact !important;
  }
  #header,
  footer,
  .local_nav,
  #proactiveai,
  .pageTopBtn {
    display: none !important;
  }
  .spOnly,
  .gen-disp_sp,
  .gen-disp_sp_inline,
  .spAndTbOnly {
    display: none !important;
  }
  body,
  main {
    width: 100% !important;
    min-width: 0 !important;
  }
  #contents {
    background-image: none !important;
    min-height: 0 !important;
  }
  #contents_inner {
    margin: 0;
    width: 100%;
  }
  .newsbox {
    width: 65.14%;
  }
  .important_link {
    width: 30.18%;
  }
  dl {
    display: table !important;
  }
  dl div {
    display: table-row !important;
    margin-bottom: 0 !important;
  }
  dt,
  dd {
    display: table-cell !important;
    padding: calc(8px - .2em) 0 !important;
    width: auto !important;
  }
  dt {
    padding-right: 1em !important;
  }
  dd {
    box-sizing: border-box;
    margin-top: 0 !important;
  }
  .box.boxGray dt,
  .box.boxGray dd {
    display: block !important;
  }
  dt::after {
    position: absolute !important;
    top: calc(8px - .2em) !important;
  }
  .box.boxGray dt::after {
    content: "" !important;
  }
  .main-2column #contents {
    width: 100% !important;
  }
  .top_page .mainvisual {
    width: 100% !important;
  }
  .top_page .mainvisual img {
    width: 100% !important;
  }
  .top_page .mainvisual .swiper-container-android .swiper-slide, .top_page .mainvisual .swiper-wrapper {
    transform: translate3d(0px, 0, 0) !important;
  }
  .top_page .mainvisual .swiper-slide {
    width: 100% !important;
  }
  .top_page .slidePagenation {
    display: none !important;
  }
  .top_page .eventWrapper .legendArea {
    display: block !important;
    position: static !important;
    text-align: center !important;
    margin: 0 auto !important;
    width: 50% !important;
  }
  .top_page .eventWrapper .swiper-container-android .swiper-slide, .top_page .eventWrapper .swiper-wrapper {
    transform: translate3d(0px, 0, 0) !important;
  }
  .top_page .eventWrapper .swiper-slide {
    width: calc(30%) !important;
  }
  .top_page .botanical-textBlock::before {
    width: 80% !important;
  }
  .top_page .animal-bg {
    width: 30% !important;
  }
  .top_page .animal-introduction {
    page-break-after: always !important;
  }
  .top_page .dialyBanner {
    width: 100% !important;
  }
}
/******************************/
footer#footer .columns.column-3 {
    justify-content: end;
    width: 70%;
}

@media screen and (max-width: 767px) {
  footer#footer .columns.column-3{
    width: 80%;
  }
}
footer#footer .columns.column-3 .column-item {
    width: calc((100% - 50px * 2) / 3);
    margin-left: 5px;
}

@media screen and (max-width: 767px) {
  footer#footer .columns.column-3 .column-item {
    width: 100%;
    text-align: center;
    margin-top: 5px;
  }
}


